JQuery Ajax没有显示成功警报

时间:2013-05-03 10:32:50

标签: php jquery

我正在努力让JQuery Ajax工作,但没有获得成功警报。

以下是代码:

<script type="text/javascript">
    $(document).ready(function(
        $('button').click(function() {
            $.ajax({
                url: 'testing123.php',
                success: function(){
                    alert('this worked');
                }
            });
            return false;
        });
    ));
</script>

<button>Click Here</button>

...然后是testing123.php文件:

<?php
    echo 'Hello there';
?>

我也添加了JQuery库。

当我点击按钮时,我应该收到一条警告说“这有效”吗?

我不明白为什么没有发生......

任何想法为什么?

2 个答案:

答案 0 :(得分:2)

括号的使用不正确。更正后的代码:

  $(document).ready(function() {    
            $('button').click(function() {    
                $.ajax({
                    url: 'testing123.php',
                    success: function(){
                      alert('this worked');
                    }
                });    
                return false;    
            });    
  });

答案 1 :(得分:0)

你需要将哈希与按钮ID('#button')放在一起。点击

$(document).ready(function() {
$('#button').click(function() {
$.ajax({
url: 'testing123.php',
success: function(){
alert('test echo');
}
});
return false;
});
});