冷傲铅笔

文章
7
资源
1
加入时间
2年10月17天

htmlElement.style 是只读属性

document.getElementById('test').style = 'opacity:0';在某些机型上,比如苹果 ios 10机型上,会报错。提示 style 属性为只读属性。建议所有的代码都改为document.getElementById('test').setAttribute('style','opacity:0')转载于:https://www.cnblogs....