您现在的位置是:主页 > news > 外贸网站模板 外贸网站制作/商城小程序
外贸网站模板 外贸网站制作/商城小程序
admin2025/5/9 21:42:35【news】
简介外贸网站模板 外贸网站制作,商城小程序,没有网怎么装wordpress,网站开发语言怎么样该问题的出现通常是iframe中的src属性缺失引起的,解决方法如下: 1.创建一个只含有<html></html>的空白htm页面,把iframe的src属性赋值为该空白页面。elmIfr document.createElement("IFRAME"); elmIfr.scr"blan…
该问题的出现通常是iframe中的src属性缺失引起的,解决方法如下:
1.创建一个只含有<html></html>的空白htm页面,把iframe的src属性赋值为该空白页面。
elmIfr = document.createElement("IFRAME"); elmIfr.scr="blank.html";
document.body.appendChild(elmIfr);
2.src = "javascript:void(0)". is working in IE and Firefox
3.In IE6 and Firefox, this could be fixed by src="spacer.gif" and put spacer.gif at your root. Once this image is cached at the browser and browser would not request this image and it should work irrespective of protocol.
4.src = "javascript:''", is working in IE6 SP2