笔记:使用jquery的 offset函数时 在ie6 中出现异常

解决方法:为使用offset的对象的top,left设上值.(另外需要注意的是offset()只对可见元素生效)

例如:

<div id='test'style="position:absolute;top:0px;left:0px;width:100px; height:100px;" >
test
</div>

$('#test').offset({'top':100,'left':100});

posted on 2011-03-11 10:42  倪浩  阅读(561)  评论(0编辑  收藏  举报

导航