alert("欢迎来到moock网!") function openblank() { window.open("http://www.baidu.com","width=100,height=100"); }
为什么打开是全屏打开,设置的宽度和高度都没体现出来少个参数,第二个参数是 '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");
这样就好了,中间那个参数没啥想写的可以为空
可能没有打开全屏!所以没能显示出来。
function openblank() { window.open("http://www.baidu.com","_blank","width=100,height=100"); }
alert("欢迎来到moock网!")
function openblank()
{
window.open("http://www.baidu.com",_blank"width=100,height=100");
}
为什么打开是全屏打开,设置的宽度和高度都没体现出来
window.open([URL], [窗口名称], [参数字符串])打开窗口的代码是这样的。高度宽度在【参数字符串】设置,你的代码少了【窗口名称】部分。【窗口名称】一般是这些:_blank:在新窗口显示目标网页 。_self:在当前窗口显示目标网页。 _top:框架网页中在上部窗口中显示目标网页