今天在fix一个bug去掉动态创建iframe的边框。花了我好久时间。
var iframe = document.createElement("iframe");
iframe.setAttribute('frameBorder', 0);//frameborder与frameborder没有区别,有些属性好像有区别。
document.appendChild(iframe);//setAtrribute 务必在appendChild之前调用,否则在IE将不会有效果
本文共 306 字,大约阅读时间需要 1 分钟。
今天在fix一个bug去掉动态创建iframe的边框。花了我好久时间。
var iframe = document.createElement("iframe");
iframe.setAttribute('frameBorder', 0);//frameborder与frameborder没有区别,有些属性好像有区别。
document.appendChild(iframe);//setAtrribute 务必在appendChild之前调用,否则在IE将不会有效果
转载于:https://www.cnblogs.com/davin-dai/archive/2011/10/08/2203016.html