我刚刚开始使用jquery-1.8.3而不是jquery-1.6.4,以下代码不再有效。有什么想法吗?
<script type="text/javascript">// <![CDATA[
jQuery.noConflict();
jQuery(window).load(function () {
jQuery('#rico').mouseenter(function () {
jQuery('.favourite-brands-infobox').hide();
jQuery('#rico-info').show();
});
jQuery('#sirdar').mouseenter(function () {
jQuery('.favourite-brands-infobox').hide();
jQuery('#sirdar-info').show();
});
});
// ]]></script>
答案 0 :(得分:-2)
尝试替换
.mouseenter(function () ...
带
.on("mouseenter", function () ...