看板 Web_Design 關於我們 聯絡資訊
※ 引述《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
lzch:好厲害~ 謝謝喔! 12/27 14:36