gpt4 book ai didi

javascript - 带有 PrototypeJS readAttribute 和 writeAttribute 的 IE7

转载 作者:行者123 更新时间:2023-11-30 06:02:54 25 4
gpt4 key购买 nike

我在 IE7 中使用脚本收到类似“对象不支持属性或方法‘writeAttribute’”的错误。它在我尝试过的所有其他浏览器中都运行良好。代码如下:

var imgData = [ 
['../images/1.png','1'],
['../images/2.png','2'],
['../images/3.png','3']
];
imgArray = new Array();
for(i=0; i < imgData.length; i++){
imgArray[i] = new Image();
imgArray[i].writeAttribute('src',imgData[i][0]);
}

任何人都可以指出正确的方向以使其在 IE7 中正常工作。

谢谢。

最佳答案

我必须将 writeAttribute 更改为 setAttribute,将 readAttribute 更改为 getAttribute。

关于javascript - 带有 PrototypeJS readAttribute 和 writeAttribute 的 IE7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7110644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com