关于隐藏IE 地址栏方法_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:37:42
Original
1885 people have browsed it


本人想通过编码实现用IE打开我自己的网站的时候全屏显示
如上图所示 还能看见地址栏 并不是我想要的效果
请问 有没办法隐藏掉 地址栏
或用其它办法 变相实现 我想要的效果

回复讨论(解决方案)

window.showModalDialog("www.baidu.com");

忘了,跨域打开要加http
window.showModalDialog("http://www.baidu.com");



<script> <br /> function open_win() <br /> { <br /> window.open("http://www.w3school.com.cn","_blank","toolbar=yes, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400") <br /> } <br /> </script>









支持3楼,利用open自带的属性可以控制,建议查看W3CSchool里面的open()的方法~~



<script> <br /> function open_win() <br /> { <br /> window.open("http://www.w3school.com.cn","_blank","toolbar=yes, location=no, directories=no, status=no, menubar=yes, scrollbars…… <br /> 关于隐藏浏览器地址栏 <br /> <br /> <html> <br /> <head> <br /> <script type="text/javascript"> <br /> function open_win() <br /> { <br /> window.open("http://www.w3school.com.cn","_blank","toolbar=yes, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400") <br /> } <br /> </script>












这个效果不行啊 还是有地址栏啊

不行啊效果如下

还是隐藏不掉URL 地址栏啊

跨域现在都不允许隐藏的
你别再采用这些没有的效果了。
除非你都加入到可信任站点

跨域现在都不允许隐藏的
你别再采用这些没有的效果了。
除非你都加入到可信任站点
不是哦  shouModalDialog可以,只是会提示有风险

这样啊 我试试看

果然效果出不来是 因为跨域了
 解决方法加入可信站点 再打开就可以了
不过加入可信站点 要么是用户手动加入 要么就是写可执行程序 叫用户下载运行,网页上的脚步权限不够是办法做到的

脚本不能做到,你必须做一个程序,让用户执行程序实现,

现在,不要再使用这种功能了。已经落后了。这样的效果没有任何意义

用户也不可能去下载你的程序去设置,


脚本不能做到,你必须做一个程序,让用户执行程序实现,

现在,不要再使用这种功能了。已经落后了。这样的效果没有任何意义

用户也不可能去下载你的程序去设置,
这种效果的意义:为了增加用户的使用面积,把地址栏隐藏掉为了防止用户的有意为之

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template