0
我的J-Query按鍵,shift鍵在Mozilla中無法運行Firefox需要幫助,提前致謝。不工作jquery回車鍵和Shift-Enter鍵
J-查詢使用:jQuery的1.7.2.min.js
<html><body>
<textarea id = 'text' rows='4' cols='50' style = 'width: 50%;height:15%;' placeholder = 'Enter Post....'></textarea>
</body></html>
<script>
$('#text').keypress(
function(e){
if (e.keyCode == 13 && e.shiftKey) {
alert("a");
}
else if(e.keyCode == 13){
alert("sdf");
}
}
);
</script>
不工作.. :( – user246186
我的壞...更新了代碼。請你檢查? – maj