jquery mouseover子页面

时间:2012-03-14 11:55:10

标签: javascript jquery html

<script type="text/javascript">
    jQuery(document).ready(function () {
        jQuery('#content111').hide();
        jQuery('.last').mouseover(function () {
            jQuery('#content111').fadeIn();
        });

        jQuery('#content111').mouseout(function () {
            jQuery('#content111').fadeOut();
        });
    });
</script>

以上代码子页面fadein但我的要求是子页面鼠标悬停

1 个答案:

答案 0 :(得分:0)

只需添加liveon

即可
jQuery('#content111').on('mouseout',function(){
    jQuery('#content111').fadeOut();
});