-1

我创建了一个迷宫,不知道为什么悬停不工作会很高兴获得任何帮助

$('.wall')
.bind('mouseenter', function() {
    $(this).css({
        'background-color': 'green'
    });
})

这是小提琴链接:

http://jsfiddle.net/uqcLn/6/

4

1 回答 1

2

在 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': ''
        });
    });
});
于 2013-10-05T02:13:31.917 回答