带有 AJAX 的 JQuery 无法从 php 页面获取内容
我尝试按下提交按钮,没有任何变化。不知道为什么
这是我的 2 页
jQuery.php
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(document).ready(function(){
$("#input").click(function(){
$.ajax({
url: 'jquery2.php?keyword='+$("#fname").val(),
type: 'GET',
success: function (data) {$("#newhtml").val(data);}
});
})
});
</script>
</head>
<body>
First name: <input type="text" id="fname" name="fname"><br>
<input type="button" id="input" value="Search Data">
<div id="newhtml"></div>
</body>
</html>
jQuery2.php
<?php
$advert = array(
'ajax' => 'Hello world!',
'advert' => $row['adverts'],
);
echo json_encode($advert);
?>
我的代码有什么问题吗?