作者Fujirou (秀吉)
看板Web_Design
标题Re: [问题] 要怎麽锁 <FORM> 里的 Esc 键
时间Tue Dec 27 13:22:55 2005
※ 引述《lzch (lzch)》之铭言:
: 使用者在输入表单内容时,如果按到 Esc 键就会 reset
: 请问有办法把这个快速键(?)拿掉吗?
: 谢谢~
我是用script挡掉
<script type="text/javascript">
<!--
window.onload = init;
function init(){
var textareaArray = document.getElementsByTagName("textarea");
for (var i = 0; i < textareaArray.length; i++){
textareaArray[i].onkeydown = disableEsc;
}
}
function disableEsc(e){
if (!e){ // argument e for W3C/Mozilla, window.event for IE
e = window.event;
}
if (e.keyCode == 27){
return false;
}
}
//-->
</script>
=====
只有IE在textarea按Esc会清空
Firefox和Opera都不会
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.112.241.81
1F:推 lzch:好厉害~ 谢谢喔! 12/27 14:36