我正在练习编写 jQuery 和 Ajax 代码并制作一个普通的 Google 搜索框,但它不起作用。没有控制台错误,Chrome 中的调试也无济于事。这是代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$("#button").click(function() {
$.ajax({
url : "http://www.google.com/search",
dataType : "html",
success : function(data) {
$("#show").html(data)
},
fail : function() {
alert("failed lol")
}
})
})
})
</script>
</head>
<body>
<div id="search">
<form name="input" method="get">
Google it: <input type="text" name="googleit" /> <br /> <br /> <input
id="button" type="button" value="let me google that for you" />
</form>
</div>
<div id="show"></div>
</body>
</html>
这段代码有什么问题?