javascript style.width无法在firefox中使用过渡doctype

前端之家收集整理的这篇文章主要介绍了javascript style.width无法在firefox中使用过渡doctype前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个脚本,可以在页面上弹出一个小DIV.这一切在IE中工作正常,如果我删除DOCTYPE,在FF中,但当DOCTYPE是X HTML / Transitional时,在Firefox中,宽度不会改变.
this.container.style.visibility = "visible";
alert("this.container.style.width before = " + this.container.style.width)
this.container.style.width = this.width;
alert("this.container.style.width after = " + this.container.style.width); 
this.container.style.height = this.height;

在IE中,在没有DOCTYPE的FF中,第一个警报显示0,第二个警告显示320(这是代码中其他地方设置的宽度)

在FF中,使用DOCTYPE到XHTML / Transitional,两个警报都显示0.任何想法在这里发生了什么?我想我可能需要在Transitional中明确设置DIV的位置,但我不确定.

解决方法

你试过设置:
this.container.style.visibility = "visible";
alert("this.container.style.width before = " + this.container.style.width);
this.container.style.width = this.width + 'px';
alert("this.container.style.width after = " + this.container.style.width);
this.container.style.height = this.height + 'px';

//Note the 'px' above

我发现尝试设置数字的宽度/高度,没有单位可能会导致问题.

原文链接:https://www.f2er.com/js/158286.html

猜你在找的JavaScript相关文章