Jquery mouseenter

时间:2014-04-28 18:31:41

标签: jquery html

我刚刚开始使用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>

1 个答案:

答案 0 :(得分:-2)

尝试替换

.mouseenter(function () ...

.on("mouseenter", function () ...