我使用了style =" overflow:hidden; white-space:nowrap;"
滚动条被删除,但是对于正文标记
,箭头不会被删除答案 0 :(得分:0)
使用:
style="overflow-y: hidden;"
你不应该真的不使用内联样式。试着这样写:
<head>
<style="text/css">
#container { overflow: hidden; }
</style>
</head>
<body>
<div id="container">Content goes here</div>
</body>
如果我的代码不起作用,我能否看到你的代码,因为我无法看到你做了什么。
编辑:
不确定我是否完全得到了你想要达到的目标。
将以下样式添加到页面中。
<style="text/css">
.hideOverflow { overflow: hidden; }
</style>
您使用的是jQuery吗?
如果是这样,请在window.open事件中添加。
$('body').addClass('hideOverflow');
我能看到你的window.open脚本吗?