Firebug正在报告
$未定义 [打破此错误] $(function(){
我有一个简单的index.php页面,它包含php include以包含我需要的内容。
内容如下:
<script type="text/javascript">
$(function(){
$("#ipad").submit(function() {
$.post("ipadcheck.php", $("#ipad").serialize(),
function(data) {
if(data.error == 'TRUE') {
$("#results_ajax").html("<div class='AppleRedBold'>Sorry There were Errors: " + data.error_message + "</div>");
} else {
$("#results_ajax").html("<div class='AppleRedBold'>" + data.display + " </div>");
}
}, "json");
return false;
});
});
</script>
<div class="paragraph_style" id="results_ajax"></div>
<div class="paragraph_style">
<form id="ipad" name="ipad">
<label class="paragraph_style" for="txtZip">Zip Code: </label>
<input class="searchBox Black" id="txtZip" name="txtZip" type="text" />
<br /><br />
<input type="submit" value="Submit">
</form>
</div>
</div>
我在其他地方这样做,我很好。我不明白错误.....
答案 0 :(得分:7)
您是否包含了jQuery库?
答案 1 :(得分:4)
在脚本标记之前添加此内容。它使用谷歌的CDN。
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
答案 2 :(得分:4)
您是否将jQuery包含在脚本的顶部?