AJAX请求不成功

时间:2014-02-14 21:47:11

标签: php jquery html ajax

我们遇到的问题描述如下。我们有两个不同的页面,第一个称为profile.php,第二个称为save_button.php。在页面profile.php中我有这个脚本,它在jQuery中编写了以下代码:

<script  >
$(function(){
    $("#save").bind('click', function(){
        document.getElementById('save').style.background='#F26522';
        document.getElementById('modify').style.background='#0083A9';
        $.ajax({
            url: 'save_button.php',
            type: 'post',
            data: { "callFunc1": "test"},
            success: function(response) { alert(response); }
        });
    })
});
</script>

profile.php页面的正文中我们编写了这段代码,这里有两个不同的按钮:

<body>
 <div class="button_container" >
  <input id="modify" type="button" class="buttons" value="Modify" onclick="changeText();" />
  <button id="save" class="buttons" >Save</button>
 </div> 
</body>

当我们点击保存按钮时,我们想要在另一个名为save_button.php的页面中执行PHP代码。在此页面save_button.php中,我们编写了以下代码:

<?php echo "test works"; ?>

我们发生的情况是,当我们点击保存按钮时,在我们的页面中没有提醒“测试工作”字样。你知道在这个页面做什么吗?请给我们一个快速反馈,因为这是一个学校项目,我们必须在接下来的三天内提交。非常感谢。

0 个答案:

没有答案