<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{ width: 100px; height: 100px; }
.box1{ background-color: red; }
.box2{ background-color: yellow; }
</style>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<script>
$(function(){
(function(){
$('.box1').click(function(){
alert('red');
})
})()
(function(){
$('.box2').click(function(){
alert('yellow');
})
})()
})
</script>
</body>
</html>
代码就是这样
点击红色 能正常弹出弹框 下面的报错 这个错误是什么原因?
相关分类