gpt4 book ai didi

Javascript:DOM 异常:INVALID_CHARACTER_ERR (5)

转载 作者:数据小太阳 更新时间:2023-10-29 05:56:06 27 4
gpt4 key购买 nike

我使用新的 IE 9 测试了我的网站,但我收到错误消息 INVALID_CHARACTER_ERR (5)。在 IE 9 中,开发人员工具突出显示了这一行。谁能帮我解决这个错误?

错误行

this.iframe = document.createElement('<IFRAME src="' + myCurrentUrl + '" frameborder=0>');


Function Code
__createDivs : function()
{
this.divs_transparentDiv = document.createElement('DIV');
this.divs_transparentDiv.className='modalDialog_transparentDivs';
this.divs_transparentDiv.style.left = '0px';
this.divs_transparentDiv.style.top = '0px';
document.body.appendChild(this.divs_transparentDiv);
this.divs_content = document.createElement('DIV');
this.divs_content.className = 'modalDialog_contentDiv';
this.divs_content.id = 'DHTMLSuite_modalBox_contentDiv';
this.divs_content.style.zIndex = 100000;
if(this.MSIE){
var myCurrentUrl = GlobPanelCurrentBaseUrl + 'images/spacer.gif';
this.iframe = document.createElement('<IFRAME src="' + myCurrentUrl + '" frameborder=0>');
this.iframe.style.zIndex = 90000;
this.iframe.style.position = 'absolute';
document.body.appendChild(this.iframe);
}
document.body.appendChild(this.divs_content);
this.divs_shadow = document.createElement('DIV');
this.divs_shadow.className = 'modalDialog_contentDiv_shadow';
this.divs_shadow.style.zIndex = 95000;
document.body.appendChild(this.divs_shadow);
window.refToModMessage = this;
this.addEvent(window,'scroll',function(e){ window.refToModMessage.__repositionTransparentDiv() });
this.addEvent(window,'resize',function(e){ window.refToModMessage.__repositionTransparentDiv() });
}

最佳答案

是的,你应该只给它元素的名称,然后像这样设置它的属性:

this.iframe = document.createElement('iframe');
this.iframe.src = myCurrentUrl;
this.iframe.frameBorder = 0;

关于Javascript:DOM 异常:INVALID_CHARACTER_ERR (5),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6169901/

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