为什么设置的高度和宽度没体现出来呢?
alert("欢迎来到moock网!") function openblank() { window.open("http://www.baidu.com","width=100,height=100"); }
为什么打开是全屏打开,设置的宽度和高度都没体现出来alert("欢迎来到moock网!") function openblank() { window.open("http://www.baidu.com","width=100,height=100"); }
为什么打开是全屏打开,设置的宽度和高度都没体现出来2016-05-24
少个参数,第二个参数是 'newwindow' 弹出窗口的名字(不是文件名),可用空''代替;
window.open('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no') //该句写成一行代码
你的改成如下
window.open("http://www.baidu.com","","width=100,height=100");
这样就好了,中间那个参数没啥想写的可以为空
alert("欢迎来到moock网!")
function openblank()
{
window.open("http://www.baidu.com",_blank"width=100,height=100");
}
为什么打开是全屏打开,设置的宽度和高度都没体现出来
举报