html代码
<!DOCTYPE html>
<html>
<head>
<script src="jquery.pagination.js"></script>
<script src="jquery-1.11.1.min.js"></script>
<script >
alert(1);
$('.M-box').pagination({
callback:function(index){
$('.now').text(index);
}
},function(api){
$('.now').text(api.getCurrent());
});
</script>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<div class="M-box"></div>
</body>
</html>
jquery.pagination.js和jquery-1.11.1.min.js文件都放项目下了
报错Uncaught ReferenceError: jQuery is not defined
43.html:8
Uncaught TypeError: $(...).pagination is not a function word_search.js:155
Uncaught TypeError: Cannot read property 'id' of null
发现jquery,js应该在第一行。。改了之后
Uncaught TypeError: Cannot read property 'id' of null 这个错啥意思。。
放入domready中,要不找不到对象
$(function(){$('.M-box').pagination({callback:function(index){$('.now').text(index);}},function(api){$('.now').text(api.getCurrent());});})
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。