发布网友 发布时间:2022-04-22 07:38
共1个回答
热心网友 时间:2022-04-22 05:50
首先你的看看你的代码有没有执行到 imgArr[i].setAttribute("src",imgArr[i].getAttribute('xsrc'));
用f12调试脚本,或者alert()下;并查看图片的src有没有改变!如果改变了证明执行了,在看下imgArr[i].getAttribute('xsrc')有没有获取到src值
获取对象位置的代码我不知道你的有没有问题,下面是我做延时加载时用到的代码:
var getPosition= function (el) {
_x = 0, _y = 0;
while (el.offsetParent !== null) {
_x += el.offsetLeft;
_y += el.offsetTop;
el = el.offsetParent;
}
return { x: _x, y: _y };
}
如果还不可以你可以把代码给我帮你看看追问朋友你好。你qq多少或者qq邮箱也可以,代码长了,贴不了。能不能在我代码的基础上修改下。