欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

$ is not defined错误原因以及解决办法

程序员文章站 2022-04-28 19:17:17
...

1.文件中没有引入jquery.min.js文件;

2.在同一个文件中,将jquery.min.js文件放在了自己写的js之后导致出错;

 
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>

<script>
	$(document).ready(function (){
		$('button').click(function(){
			if(!$(this).parent().is(":hidden")) {
				$(this).parent().slideUp();
				$(this).parent().prev().children().eq(1).html('打开');
				$(this).parent().parent().next().children().eq(1).slideDown();
				$(this).parent().parent().next().children().eq(0).children().eq(1).html('关闭')
			}
		})
})
</script>