螢火蟲是給錯誤:
TypeError: $(...) is null
$('#menu img').hover(
我不知道爲什麼。看似有問題的腳本是這樣它取代的圖像時,將光標懸停在圖片:
$(document).ready(function()
{
var storeNormalPath;
$('#menu img').hover(
function()
{
storeNormalPath = $(this).attr('src');
var imgArray = $(this).attr('src').split('.jpg');
$(this).attr('src', imgArray[0]+'Hover.jpg');
},
function()
{
$(this).attr('src', storeNormalPath);
}
).click (function()
{
//empty now
});
});
如果dayala的答案解決了您的問題,那麼您應該標記爲「接受的答案」.....我建議您閱讀[faq](http://stackoverflow.com/faq)以獲得更多熟悉Stack Overflow ....歡迎! :D – 2013-04-24 03:10:56