gpt4 book ai didi

javascript style.width 在具有过渡文档类型的 firefox 中不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 04:28:13 26 4
gpt4 key购买 nike

我有一个脚本可以让一个小的 DIV 在页面上弹出。在 IE 中一切正常,如果我删除 DOCTYPE,在 FF 中一切正常,但是当 DOCTYPE 为 XHTML/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

我发现在没有单位的情况下尝试设置数字的宽度/高度会导致问题。

关于javascript style.width 在具有过渡文档类型的 firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/349861/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com