我试图让 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 库。
当我单击按钮时,我应该会收到一条提示“这有效”的警报,对吗?
我不明白为什么它没有发生......
任何想法为什么?