我只在IE9得到一個錯誤「SCRIPT5007:預期的對象」。有2個相同的錯誤。一個是在的$(document)在beggining,另一個被標記爲「< - 錯誤在這裏」JS錯誤「對象預期」的錯誤說,只有在IE9
<script>
$(document).ready(function(){
var imagePath = "/sites/all/modules/custom/sixdegrees_right_menu/images/";
$(".menu-holder").mouseover(function()
{
//$(this).children(".menu-title").children(".menu-bg").hide();
//$(this).children(".menu-title").children(".menu-name").css({"float":"none"});
//$(this).children(".menu-title").children(".menu-text").css({"float":"none"});
var imgSrc = $(this).children(".menu-icon").find("img").attr("src");
imgSrc = imgSrc.replace(imagePath, "");
imgSrc = imagePath + "h-" + imgSrc;
$(this).children(".menu-icon").find("img").attr("src", imgSrc);
<- error here
//$(this).children(".menu-title").children(".menu-name").children("img").animate({"left": "0px"}, "slow");
//$(this).children(".menu-title").children(".menu-text").animate({"left": "0px"}, "slow");
});
});
</script>
這裏也有,我沒有足夠的權限來刪除它,除非我可以要求某些註釋行一些東西。
您可以發佈相關的HTML? – jbabey 2012-03-08 04:35:48
使用您在IDE中查找和替換的任何實例,搜索$並用jQuery替換。我只是猜測你可能有一些MVC框架或安裝的東西。 – Ohgodwhy 2012-03-08 05:15:03