window.open()学习笔记()仅供参考
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.open()学习笔记()仅供参考相关的知识,希望对你有一定的参考价值。
window.open可以设置的属性
url弹出的窗口地址
windowname弹出的窗口名字
height 窗口的高度
width 窗口的宽度
top 窗口距离屏幕上方的像素值
left 窗口距离屏幕左方的像素值
toolbar =(yes/no)是否显示工具栏
menubar=(yes/no)是否显示菜单栏
scrollbars=(yes/no)是否显示显示滚动栏
Resizeable=(yes/no)是否允许改变窗口大小
location=(yes/no)是否显示地址栏
status=(yes/no)是否显示状态栏信息
<script type="text/javascript">
window.open("new.html","我的窗口名","height=1000,width=1000,toolbar=yes,menubar=yes,scrollbar=yes,Resizeable=yes,location=yes,status=yes");
</script>
window.open("new.html",_self);//在原来的窗口位置打开new.htm窗口
window.open("new.html",_blank);//打开一个新的窗口来打开new.htm窗口
</script>
以上是关于window.open()学习笔记()仅供参考的主要内容,如果未能解决你的问题,请参考以下文章