我正在使用Mozilla firefox,我需要隐藏弹出窗口中的URL我正在使用location = no,directories = no但它仍在显示
<asp:Button ID="btn_login" runat="server" Text="Login" Width="105px" style="height: 26px" onClientclick = "javascript:window.open('login_page.aspx','name','height=299, width=477,toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=no,about:blank'); return false;" />
我该如何解决?
谢谢
答案 0 :(得分:1)
这些天你可以使用jquery对话框和浏览器块弹出窗口来代替弹出窗口
$('<div></div>').dialog()
答案 1 :(得分:0)
出于安全原因,窗口和iframe的位置始终是公开的。如果您确实要隐藏位置并将内容显示为来自您自己的站点,则需要在网络上设置代理,将代理传递给实际服务器。见How to create a simple proxy in C#?