作者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