0

hi2all 我只需要处理输入按钮事件,但我的代码句柄输入即使我点击

另一个按钮

例如,当我从 kb 中单击 Shift+enter 时,它会处理单击我想防止这样的事情

我想单独处理按回车

{ _ __ _ __ _ __ _ __ 另一个问题我想在每个附加文本之后添加新行

我的代码在这里

<!DOCTYPE HTML>
<html>

    <head>
        <meta http-equiv="content-type" content="text/html" />
        <meta name="author" content="gencyolcu" />
        <title>Untitled 1</title>
        <style>
</style>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
        <script>
            $(document).ready(function() {
                $("#button1").click(function() {
                    $(this).attr("disabled", true);
                });
                $("#entr").keypress(function(e) {
                    if (e.which == 13) {
                        alert("enter pressed");
                        $("#texts").append($("#entr").val());
                    }
                });
            });
        </script>
    </head>

    <body>
        <div id="m" style="background-color: darkorange;">click me to change webpage background</div>
        <input id="entr" type="text" value="enter some text here" />
        <input id="button1" type="button" value="me" />
        <p id="texts">text in text box will appended here
            <br />
        </p>
    </body>

</html>
<script type="text/javascript">
    //change the color of webpage when clicking the div
    var x = document.getElementById("m");
    x.addEventListener("click", function() {
        document.body.style.backgroundColor = "darkturquoise";
    });
</script>
4

2 回答 2

0

////will work for shift+enter if (event.keyCode == 13 && event.shiftKey) { } 如何检测“shift+enter”并在 Textarea 中生成新行?

于 2013-04-25T15:30:34.847 回答
0

这是你需要做的。将您的事件绑定keypress到正文。

jQuery(document).ready(function(){
    jQuery('body').on('keypress', function(e){
        //  We are looking for the action "enter"
        if(e.which == 13){
            //  Must not be with shift
            if(event.shiftKey !== true){
                alert(' Enter ! ');
            }
        }
    });
});

要添加新行,您必须附加MyVar = MyVar + '<br />'+"\r\n";

于 2013-04-25T15:28:07.550 回答