window.open()学习笔记()仅供参考

时间:2021-12-26 20:11:09

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()学习笔记()仅供参考