使用 jQuery 在 FireFox 中清除 HTML 文本区域字段时出现问题

发布于 2024-11-04 23:58:57 字数 439 浏览 0 评论 0原文

我们正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

临走之时 2024-11-11 23:58:57

我刚刚在 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/

公布 2024-11-11 23:58:57

您是否尝试过使用 text() 而不是 val()

$("#text_areas_id").text("");

Have you tried using text() instead of val()?

$("#text_areas_id").text("");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文