通过ajax发布页面

时间:2010-09-18 13:27:35

标签: php ajax

嗨我想通过以下代码提交页面,但我无法在ajax.php上获取发布数据 请告诉我我错在哪里

new Ajax(wgScriptPath +'/' + 'ajax.php', {
              method: 'post',
              data:{items:item},
              onComplete: function(res)
{
              ////Code
}

2 个答案:

答案 0 :(得分:2)

为了保持简单和快速,您可以使用开源jquery。

$.ajax({
  type: 'POST',
  url: url,
  data: data,
  success: success
  dataType: dataType
});

检查下面的链接 - http://api.jquery.com/category/ajax/

例如

<script>
    $(document).ready(function() {
        $('#checkbox').click(function() {
        $.ajax({type : "POST",
            url : "test.php",
            data : "ffs=somedata&ffs2=somedata2",
            success : function() {
                alert("something");
            } 
        });
        });
    });
</script>
<body>
        <input type = "checkbox" name = "checkbox" id = "checkbox">
</body>

答案 1 :(得分:0)

提及您正在使用的框架,假设您正在使用原型,请尝试下面的代码

new Ajax(wgScriptPath +'/' + 'ajax.php', {
              method: 'post',
              parameters:{items:item},
              onComplete: function(res)
{
              ////Code
}
});