处理 IE 中的 JQuery/CSS 错误

发布于 2024-10-07 19:50:11 字数 753 浏览 3 评论 0原文

我有一些代码可以在页面加载/调整大小时最大化视频面板。我正在使用 JQuery 1.4.4,并且在 Chrome、Firefox 和 Safari 中一切正常。按照其他帖子中的一些示例,我根据屏幕上其他元素的渲染大小和样式调整视频面板大小。

function maximizeVideo(){
  var play_height = $(window).height()-42;
  var play_width = $PLAY.width() - $NAV.width();

  play_width -= parseInt($NAV.css("paddingLeft"), 10) + parseInt($NAV.css("paddingRight"), 10); 
  play_width -= parseInt($NAV.css("marginLeft"), 10) + parseInt($NAV.css("marginRight"), 10); 
  play_width -= parseInt($NAV.css("borderLeftWidth"), 10) + parseInt($NAV.css("borderRightWidth"), 10); 

  $NAV.css('height',play_height-16+"px");
  $VIDEO_PANEL.resize(play_width, play_height);
}

在 IE 中,css 访问器有时会返回 NaN。有没有更好的方法来考虑其他元素的渲染宽度?
如果没有,捕获这些错误的最佳方法是什么?

谢谢!

I've got some code to maximize a video panel on page load / resize. I'm using JQuery 1.4.4 and everything is working great in Chrome, Firefox and Safari. Following some examples from some other posts, I adjust the video panel size based on the rendered size and styling of the other elements on the screen.

function maximizeVideo(){
  var play_height = $(window).height()-42;
  var play_width = $PLAY.width() - $NAV.width();

  play_width -= parseInt($NAV.css("paddingLeft"), 10) + parseInt($NAV.css("paddingRight"), 10); 
  play_width -= parseInt($NAV.css("marginLeft"), 10) + parseInt($NAV.css("marginRight"), 10); 
  play_width -= parseInt($NAV.css("borderLeftWidth"), 10) + parseInt($NAV.css("borderRightWidth"), 10); 

  $NAV.css('height',play_height-16+"px");
  $VIDEO_PANEL.resize(play_width, play_height);
}

In IE the css accessor sometimes returns NaN. Is there a better way to account for the rendered width of the other element?
If not, what's the best way to trap these errors?

Thanks!

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

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

发布评论

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

评论(1

北凤男飞 2024-10-14 19:50:11

对于您的情况,我认为您应该查看 outerWidth 函数宽度。使用outerWidth(true),我们可以获得元素的宽度,包括其边框、内边距和边距。因此,您可以将此行: 替换

var play_width = $PLAY.width() - $NAV.width();

为:

var play_width = $PLAY.width() - $NAV.outerWidth(true);

从而完全消除接下来的三行计算。


此外,heightwidth 函数不仅是 getter,也是 setter,因此这一行:

$NAV.css('height',play_height-16+"px");

可以重写为

$NAV.height(play_height - 16);

For your situation, I think you should be looking at the outerWidth function instead of width. Using outerWidth(true), we can obtain the width of the element including its borders, padding and margin. Therefore you can replace this line:

var play_width = $PLAY.width() - $NAV.width();

with this:

var play_width = $PLAY.width() - $NAV.outerWidth(true);

And thus eliminating the next three lines of calculations altogether.


Additionally, the height and width functions are not just getters, but also setters, so this line:

$NAV.css('height',play_height-16+"px");

can be rewritten as

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