在弹出窗口中隐藏URL

时间:2014-07-12 07:09:56

标签: javascript

我在Mozilla的弹出窗口中隐藏url时遇到问题。我尝试在弹出窗口参数中使用location = no但它没有帮助。任何建议或替代方案。有没有办法使用javascript加密网址使用java解密?

1 个答案:

答案 0 :(得分:0)

我想如果你在javascript中打开新窗口,那么你可以写: -

var win = window.open("about:blank","");

从变量win中你可以访问新打开的窗口的html。现在添加一个iframe赢取新窗口的主体并将src设置为您需要的src。如: -

win.document.write('<iframe src="http://www.w3schools.com/html/html_iframe.asp" style="height: 100%;width: 100%;border: none;"></iframe>');