您现在的位置是:首页 > 电脑技术查询 > web开发

怎么在firefox中把enter键转化为tab键

编辑:chaxungu时间:2022-10-02 23:22:36分类:web开发

如何在firefox中把enter键转化为tab键?
rt

------解决方案--------------------
<input type= "text " onkeydown= "trans(event); ">

<script language= "Javascript ">
function trans(obj) {
if(obj.keyCode == '13 ') {
obj.keyCode = 8;
}

}