使用 jQuery 在 FireFox 中清除 HTML 文本区域字段时出现问题
我们正在尝试使用 jQuery 清除表单中的文本区域。
它适用于 Safari 和 Chrome,但不适用于 Firefox。 FireFox 中的问题是它清除源中的文本(根据 firebug),但不清除正常浏览器显示中的文本。
我们使用的代码是:
$("#text_areas_id").val("");
有人知道 Firefox 4 中存在这样的错误吗?
我们的猜测是,在更改其值后,我们需要以某种方式重新渲染 Firefox 的文本区域。我们读到一些人在 Opera 中遇到了类似的问题,并通过将文本区域的 css 设置为 display:block 来修复它,但我们对此没有任何运气。
我们在 Mac 和 Windows 上使用 FireFox 4.01。 Firebug 1.7.0
感谢您提供的任何帮助!
We're trying to clear a textarea in a form using jQuery.
It works in Safari and Chrome, but not in Firefox. The problem in FireFox is that it is clearing the text in the source (according to firebug) but not in the normal browser display.
The code we are using is:
$("#text_areas_id").val("");
Is anyone aware of a bug in Firefox 4 with this?
Our guess is that we need to somehow re-render the textarea for firefox after we change its vallue. We read some people had similar problems in Opera and fixed it by setting the css of the text area to display:block, but we didn't have any luck with this.
We are using FireFox 4.01 on Mac & Firebug 1.7.0
Thanks for any assistance you can offer!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚在 Firefox 4.0.1 中尝试了您的解决方案,似乎有效:
http://jsfiddle.net/8NEzR/8/
I have just tried your solution in Firefox 4.0.1 and seems to work:
http://jsfiddle.net/8NEzR/8/
您是否尝试过使用
text()
而不是val()
?Have you tried using
text()
instead ofval()
?