我只是无法理解这个功能的各个步骤,谁能解释一下?
function keypress(field,e,x) {
if (!e) {
var e = window.event;
}
if (e.keyCode) {
code = e.keyCode;
}
else if (e.which) {
code = e.which;
}
var character = String.fromCharCode(code);
console.log("Character" + character);
if (code == 13) {
box.focus();
}
}
答案 0 :(得分:2)
if (!e) {
var e = window.event;
}
如果未定义e(事件变量),则将其设置为window.event
。这可确保您在变量e
中获得必要的数据。
if (e.keyCode) {
code = e.keyCode;
}
else if (e.which) {
code = e.which;
}
浏览器特定测试;某些浏览器(据我所知IE)使用e.wich
,其他浏览器使用e.keyCode
。这表示用户按下了哪个键。
var character = String.fromCharCode(code);
console.log("Character" + character);
将代码转换为char。
if (code == 13) {
casella2.focus();
}
检查是否按下了回车键,如果是,则关注casella2。
您可以找到不同的keyCodes here的列表。