我添加了以下 java 脚本代码来创建一个弹出窗口:
document.write('<center>');
document.write('<div id="productComapreBox" style="border:0px solid #0066FF ; padding:5px; font-size:150%; text-align:center; display:none; width:820px; height:600px;">');
document.write('<input type="image" src="images/close.png" width="30" height="30" alt="X" onClick="'+eval(Popup.hide("productComapreBox"))+'" style="cursor:pointer; float:right; z-index:20;">');
document.write('<div style="z-index:20;">');
document.write('<iframe width="800px" height="600px" frameborder="0" scrolling="auto" marginheight="0" marginwidth="0" style="background-color:#FFFFFF;" src="<?php echo $domainName; ?>productComaprePop.php?productComapreIds='+productId+'"></iframe>');
document.write('</div>');
document.write('</div>');
document.write('</center>');
它正在打开我想要的弹出窗口,但它替换了原始的 html 源。如何防止这种情况。
请帮忙
谢谢