我创建了一个迷宫,不知道为什么悬停不工作会很高兴获得任何帮助
$('.wall')
.bind('mouseenter', function() {
$(this).css({
'background-color': 'green'
});
})
这是小提琴链接:
我创建了一个迷宫,不知道为什么悬停不工作会很高兴获得任何帮助
$('.wall')
.bind('mouseenter', function() {
$(this).css({
'background-color': 'green'
});
})
这是小提琴链接:
在 jsfiddle 中使用它:
在 html 中添加:
<script type="text/javascript" src="http://codeorigin.jquery.com/jquery-1.10.2.min.js"></script>
并在脚本中执行此操作:
$(document).ready(function(){
$(document).on("mouseenter",".wall",function(){
$(this).css({
'background-color': 'green'
});
});
$(document).on('mouseleave',".wall", function () {
$(this).css({
'background-color': ''
});
});
});