<html><head>
<script type="text/javascript" src="jquery-1.7.min.js"></script>
<script type="text/javascript">
$("#hoverit").one("mouseover", function(){
$("#tomato").append('t');
});
</script>
</head><body>
<div id="hoverit">hover over this</div>
<div id="tomato">mmm</div>
</body></html>
我試圖讓鼠標懸停做一個動作只有一次使用jQuery one
命令,它不工作...
任何想法?
您試圖綁定事件的事件元素存在之前的處理程序。這包括在['jQuery入門教程](http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery)中。 – 2012-01-01 09:37:08