jQuery使用PHP脚本更新Div

时间:2009-09-10 19:49:41

标签: php jquery ajax request

我完全不知道怎么做,所以我要继续问问。

我想要做的是使用外部文件中名为send.php的PHP脚本更新div的内容。

所以我有这样的div:

<div class="classname">

</div>

我想将数据发布到此send.php文件,然后使用PHP脚本的结果更新该div。可以这样做吗?

3 个答案:

答案 0 :(得分:5)

对于简单的ajax调用,我通常更喜欢使用$.load,因为它的语法非常简洁。将参数作为对象(键/值对)传递将使其使用POST请求:

<a href="no-script.php" class="something">Click!</a>

$(document).ready(function() {
    $('a.something').click(function(e) {
        //prevent the href from being followed
        e.preventDefault();

        //inject div.classname with the output of send.php
        $('div.classname').load('send.php', {param1: 'foo', param2: 'blah'});
    });
});

如果您不需要它作为POST,您只需将参数添加为查询字符串:

$('div.classname').load('send.php?param1=' + param1 + '&param2=' + param2);

答案 1 :(得分:0)

<a href="#">click</a>

<script>
    $(function() {
      $("#refresh").click(function(evt) {
         $("#classname").load("send.php?data=someData")
         evt.preventDefault();
      })
    })
</script>


<div id="classname">

</div>

要阅读的一些文档:

  1. http://docs.jquery.com/Ajax/jQuery.post

答案 2 :(得分:0)

绝对!请查看this帖子,了解如何使用jQuery的ajax功能。然后你想要打电话

$.(".classname").append("Whatever results you get");

填补div。

祝你好运!