如何使用Javascript从字段发布数据

时间:2013-01-28 15:30:40

标签: php javascript jquery ajax jquery-post

您好我正在尝试创建一个页面,该页面将使用Javascript中的$.post方法将实时文本字段中的数据发布到按下空格键时的另一个脚本。我希望来自名为 index.php 的页面中的数据通过另一个名为 save.php 的文件发布。我希望txt_a textfield的值为post varible text的值。我该怎么做?以下是我目前的代码......

<html>   
<head>
    <script type="text/javascript">
        function event_a() {
            if (event.keyCode == 13) { 
               $(document).ready(function(){
                   txt=$document.getElementsByName('txt_a')[0].value;
                   $.post("save.php",{text:txt});
               };
            };
        }
    </script>
</head>
<body>
    <form method="POST" name="" action="">
        <input name="txt_a" type="text" id="txt_a" onkeypress="event_a()"/>
    </form>
</body>
</html>

由于

3 个答案:

答案 0 :(得分:1)

这应该让你开始:

$(function(){

    $('#txt_a').keyup(function(e){

        if(e.which === 13) {

            $.post('save.php',{text: $(this).val()}, function(data){
                //do something with the response
            });
        }

    });

});

并在 save.php

$text = isset($_POST['text']) ? $_POST['text'] : null;

答案 1 :(得分:0)

你的javascript函数应该更像这样:

function event_a(event) { // event needs to be defined as arg to use.
  if (event.keyCode == 13) { // ready is used to trigger code when the page is ready, not needed here
    var txt=$('txt_a').val(); // assuming you are using jQuery, you can access the value like this
    $.post("save.php",{text:txt});
  }
}

答案 2 :(得分:0)

为什么要将变量从一个文件传递到另一个文件?使用$ _SESSION在多个页面中保存和检索设置数据/变量。