我建立這個非常簡單的腳本,但我沒有工作。
jQuery的 - 將鼠標置於DIV = addClass
有人可以告訴我在哪裏的錯誤是什麼?
HTML
<div id="hello" style="border: 1px solid #000000; margin:10px; padding:5px;">Hello</div>
<div style="border: 1px solid #000000; margin:10px; padding:5px;">Word</div>
<div style="margin:10px; padding:5px;">Test</div>
JS
$(function()
{
$('div').live('hover', function (event)
{
if (event.type == 'mouseover')
{
$(this).addClass('mark');
}
else
{
$(this).removeClass('mark');
}
});
});
http://www.jsfiddle.net/4pYth/4/
提前感謝!
彼得
嗨鷓鴣,您的解決方案沒有奏效...... http://www.jsfiddle.net/4pYth/11/ – Peter 2010-09-21 17:29:01
我覺得你的jsfiddle用mootools的,而不是jQuery的。 http://www.jsfiddle.net/4pYth/12/ – partkyle 2010-09-21 17:34:58
UPS :) ....非常感謝! – Peter 2010-09-21 17:49:44