亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

禁用Enter鍵表單自動提交實(shí)現(xiàn)代碼

 更新時間:2014年05月22日 09:32:20   作者:  
這篇文章主要介紹了禁用Enter鍵表單自動提交實(shí)現(xiàn)代碼,需要的朋友可以參考下
復(fù)制代碼 代碼如下:

//禁用Enter鍵表單自動提交
document.onkeydown = function(event) {
var target, code, tag;
if (!event) {
event = window.event; //針對ie瀏覽器
target = event.srcElement;
code = event.keyCode;
if (code == 13) {
tag = target.tagName;
if (tag == "TEXTAREA") { return true; }
else { return false; }
}
}
else {
target = event.target; //針對遵循w3c標(biāo)準(zhǔn)的瀏覽器,如Firefox
code = event.keyCode;
if (code == 13) {
tag = target.tagName;
if (tag == "INPUT") { return false; }
else { return true; }
}
}
};

相關(guān)文章

最新評論