jquery悬停功能悬停在Internet explore 8上的问题

时间:2012-10-12 14:37:18

标签: jquery internet-explorer function hover

var txt = <div class="editImage">...</div>

$(this).hover(
    function() {
        var mod = $('.editImage').attr('id');
        if(mod!='1'){
            $('#img-profile').append('<div id="edit-container"></div>');
            $('#edit-container').html(txt),
        }
    },
    function() {
        var mod = $('.editImage').attr('id');
        if(mod!='1'){
            $('#edit-container').remove();
            $('.editImage', this).html('');
        }
    }
);

喜 这个功能无处不在,但是当在Internet Explorer 8中悬停时,if

效果不佳

任何人都有解决方案吗? TNX

0 个答案:

没有答案