douduoyan5943 2019-07-12 14:09
浏览 134
已采纳

JQuery和PHP按Enter键进行处理

I have the following two files request.php and response.php. I used to send the request using a button

    <input type="button" value="Request message" onclick="post()"/>

but now I and considering using just the "Enter"(13) key.

The code works, however it shows the result just for a couple of milliseconds. In theory keydown function is working and getting the result from response, bt I dont know why just for a very short time.

Any tips?

request.php

<script type="text/javascript">

function post(){
$("#message").keydown(function (e) {
    if (e.keyCode == 13) {
    var message=document.getElementById("message").value;
    $.post('response.php',{postmessage:message},
    function(data){
    var result = $('#post_message').html(data);
    console
return result; });
    }
});
}
</script>

<form>
Enter Message:<input type="text" id="message" name="message" onclick="post()"/><br/>
</form>
<div id="post_message"></div>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>

response.php

<?php
 function returnString() {
    $post_msg = $_POST['postmessage'];
    echo "Message entered ->", $post_msg ," <- here";
}
returnString();
?>
  • 写回答

3条回答 默认 最新

  • duanou1904 2019-07-12 14:27
    关注

    You are trying to mimic behavior that is already available by default with a form that only has one input.

    Thus your form is submitting and reloading the page.

    You don't need to listen to key event on the <input>. Just listen for the submit event of the form and prevent the default submit process

    $('form').submit(function(e){
        e.preventDefault();    
        var msg = $('#message').val();
    
        mockPost(msg).then(function(res){        
          $('#post_message').append('<p>' + res + '<p>')
        });    
    
    })
    
    
    function mockPost(v){
       return new Promise(function(resolve){
            setTimeout(function(){
              resolve('Message= ' + v)
            }, 200)
       })
    }
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <form>
    Enter Message:<input type="text" id="message" name="message"/><br/>
    </form>
    <div id="post_message"></div>

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 vmware exsi重置后的密码
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真
  • ¥15 mars2d在vue3中的引入问题
  • ¥50 h5唤醒支付宝并跳转至向小荷包转账界面