JQuery实现鼠标移动到图片上显示边框效果_jquery
程序员文章站
2022-04-29 16:01:55
...
复制代码 代码如下:
以下为程序代码:>
x.appendTo($('body'));
x.css({
width : $(this).width() - 6,
height : $(this).height() - 6,
left : $(this).offset().left,
top : $(this).offset().top
});
$($.browser.msie ? this : x).mouseout(function(){
x.remove();
});
});
});