不工作Jquery输入Key和Shift-Enter键

时间:2014-05-06 19:25:17

标签: javascript php jquery html css

我的J-Query按键,Shift键在Mozilla Firefox中不起作用需要提前帮助。

J-Query使用: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> 

2 个答案:

答案 0 :(得分:0)

试试这个

$('#text').keypress(function(event) {
        if (event.keyCode == 13 && event.shiftKey) {
         alert("shift plus enter");
         }
});

答案 1 :(得分:0)

将您的代码放在文档就绪处理程序中 -

$(document).ready(function() {
   $('#text').keypress(function (e) {   
       if (e.keyCode == 13 && e.shiftKey) {
           console.log("a");
       } else if (e.keyCode == 13) {
           console.log("sdf");
       }
   });
});