处理 IE 中的 JQuery/CSS 错误
我有一些代码可以在页面加载/调整大小时最大化视频面板。我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您的情况,我认为您应该查看
outerWidth
函数宽度。使用outerWidth(true)
,我们可以获得元素的宽度,包括其边框、内边距和边距。因此,您可以将此行: 替换为:
从而完全消除接下来的三行计算。
此外,
height
和width
函数不仅是 getter,也是 setter,因此这一行:可以重写为
For your situation, I think you should be looking at the
outerWidth
function instead ofwidth
. UsingouterWidth(true)
, we can obtain the width of the element including its borders, padding and margin. Therefore you can replace this line:with this:
And thus eliminating the next three lines of calculations altogether.
Additionally, the
height
andwidth
functions are not just getters, but also setters, so this line:can be rewritten as