1

所以我的代码是这样的:

<head>
<script type="text/javascript">
<!--
function myPopup2() {
window.open( "http://aunabzzzolution.weebly.com/log-in.html", "myWindow", 
"status = 0, height = 185, width = 300, resizable = 1" )
}
//-->
</script>
</head>
<body>
<form>
<input type="button" onClick="myPopup2()" value="  Log In  ">
</form>
</body>​

这是一个例子

而且我不希望滚动条出现在弹出窗口中。如何??

另外,如果您想查看实时示例,请转到此处(左上角)

4

1 回答 1

0

如果您可以访问弹出窗口的 HTML/CSS 代码,您可以简单地添加overflow: hidden到它的主体样式。

于 2013-01-01T22:30:08.680 回答