滚动条不会出现在 FF 中,而是出现在 Chrome 中

发布于 2024-11-24 17:29:30 字数 180 浏览 4 评论 0原文

最近发现一个链接,在FF和Chrome中打开。 出现一个小弹出窗口。我调整了 Chrome 中 PopUp 的大小,并出现了滚动条。 然后我调整了 FF 中 PopUp 的大小,但无法滚动。没有滚动条。

这是一个已知问题还是与某些样式有关? 当窗口变小以阅读整个文本时,滚动条只会出现在 Chrome 中,但不会出现在 FF 中。

recently I found a link and opened it in FF and in Chrome.
A small PopUp appeared. I resized the PopUp in Chrome and scrollbars appeared.
Then I resized the PopUp in FF and I wasn't able to scroll. There were no scrollbars.

Is it a known issue or does it have to do with some styles?
The scrollbars are just appearing in Chrome when the window gets to small to read the whole text, but not in FF.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半透明的墙 2024-12-01 17:29:30

该网站使用 JavaScript 打开一个新窗口。代码如下:

<a class="white" href="javascript:popupNoScrollbars('/casino/popupOperatedBy.faces','Tipico Casino Ltd.',620,620)">Operated by Tipico Casino Ltd.</a>

函数 popupNoScrollbars 的代码

function popupNoScrollbars(url, name, width, height) {
   name = name.replace(/ /g,"");
   name = name.replace(/./g,"");
  popwin = window.open(url,name,"toolbar=no,scrollbars=no,menubar=no,resizable=yes,status=no,width="+width+",height="+height+",dependent=yes");
  popwin.focus();
} 

上面的函数可能在 Chrome 中中断,结果在调整大小时显示滚动条,但在 Firefox 中正常工作(调整大小时没有滚动条)。

如果你在firefox中添加地址,而不用javascript打开,你会看到滚动条可以工作
https://www.tipico.com/casino/popupOperatedBy.faces

The website open a new window with javascript. The code is the following:

<a class="white" href="javascript:popupNoScrollbars('/casino/popupOperatedBy.faces','Tipico Casino Ltd.',620,620)">Operated by Tipico Casino Ltd.</a>

The code for function popupNoScrollbars

function popupNoScrollbars(url, name, width, height) {
   name = name.replace(/ /g,"");
   name = name.replace(/./g,"");
  popwin = window.open(url,name,"toolbar=no,scrollbars=no,menubar=no,resizable=yes,status=no,width="+width+",height="+height+",dependent=yes");
  popwin.focus();
} 

Probably the above function breaks in Chrome, with result to show the scrollbars when you resize but works correctly in firefox (without scrollbars in resize).

If you add the address in firefox, without opened by javascript, you will see that the scrollbars works
https://www.tipico.com/casino/popupOperatedBy.faces

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文