jquery on使用 mouseover
on表示觸發事件的方法,mouseover 表示移上光標 的事件
例子:
<div id="demohovertree" style="width:200px;">
移上光標試試效果。
</div>
<script type="text/javascript" src="http://down.hovertree.com/jquery/jquery-1.12.3.min.js"></script>
<script>
$('#demohovertree').on("mouseover",function() {
$(this).css("background-color","yellow")
});</script>
效果如下:
移上光標試試效果。