如何在firefox中把enter键转化为tab键?
rt
------解决方案--------------------
<input type= "text " onkeydown= "trans(event); ">
<script language= "Javascript ">
function trans(obj) {
if(obj.keyCode == '13 ') {
obj.keyCode = 8;
}
}
查询谷 - www.chaxungu.com
怎么在firefox中把enter键转化为tab键
编辑:chaxungu时间:2022-10-02 23:22:36分类:web开发