WebKit 宽度未更新?
我有一段在窗口调整大小时运行的代码。 我正在拉动输入文本元素的 width
和 outerWidth
。
此过程在每个浏览器中都可以正常工作,Webkit 除外,它从 outerWidth
返回正确的结果,但从 width
与加载时的原始版本相比,永远不会改变。
这是调整浏览器窗口大小时我的脚本的实际控制台输出(这是 Chrome,但 Safari 4 中也会发生同样的情况):
outerWidth: 772
width: 772
outerWidth: 773
width: 772
outerWidth: 773
width: 772
outerWidth: 794
width: 772
outerWidth: 794
width: 772
outerWidth: 815
width: 772
outerWidth: 815
width: 772
outerWidth: 820
width: 772
outerWidth: 837
width: 772
以前有人经历过这种情况吗? 你知道为什么会这样吗? 最重要的是,您知道如何解决这个问题吗? :)
谢谢。
I have a piece of code which runs on window resize. I am pulling the width
, and the outerWidth
of a input text element.
This process works fine in every browser, except Webkit, which returns the proper result from outerWidth
, but the result from width
never changes from the on load original.
This is actual console output from my script when resizing the browser window (This is Chrome, but the same happens in Safari 4):
outerWidth: 772
width: 772
outerWidth: 773
width: 772
outerWidth: 773
width: 772
outerWidth: 794
width: 772
outerWidth: 794
width: 772
outerWidth: 815
width: 772
outerWidth: 815
width: 772
outerWidth: 820
width: 772
outerWidth: 837
width: 772
Has anyone experienced this before? Do you know why it happens? And most importantly, do you know how to work around it? :)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的测试用例。 两者似乎都按预期工作(Safari 4)。
Here is my test case. Both seem to work as expected (Safari 4).