1
我的JavaScript彈出窗口有問題。我有兩個窗口彈出功能:Javascript WIndows彈出功能衝突
第一個窗口彈出將打開一個新窗口包含頁面URL
樣子:
<a class="" onclick="kmt_contactFormPopup('http://uk.support.tomtom.com/app/ask',this)">[To the contact form..]</a>
function kmt_contactFormPopup(emailURL, aTag)
{
params = 'width=950px';
params +=',height=700';
params += 'screenX=250, screenY=80,';
params +='scrollbars=yes';
newwindow=window.open(emailURL,'name',params);
if (newwindow.focus) {newwindow.focus()}
}
第二個窗口彈出將抓住內容在此HTML頁面中,並在彈出窗口中顯示內容。
例如;
Collect the error log <a href="#BOX01" onclick="kmt_ShowBoxPopup('BOX01', this);"><strong>[Show me how..]</strong></a><br /><br />
<div id="BOX01" style="display:none">
<table cellspacing="0" cellpadding="0" border="0" style="background-color:#ffffff;">
</tr>
</table>
</div>
JavaScript的
function kmt_ShowBoxPopup(targetDivID, aTag)
{
var orgin_div_content=document.getElementById(targetDivID).innerHTML;
showBoxPopupWin =window.open("",'name','height=400,width=710,screenX=250,screenY=80, scrollbars=yes');
showBoxPopupWin.document.write (orgin_div_content);
if (window.focus) {showBoxPopupWin.focus()}
}
如果我運行聯繫形式彈出功能第一,然後我點擊showBox功能。我在JavaScript中的錯誤消息:
權限遭拒,從 獲取屬性Window.document 43
行是這行代碼
showBoxPopupWin.document.write (orgin_div_content);
我想有不同的彈出視窗。