“空” IE 中表单字段中显示的值

发布于 2024-10-24 05:15:55 字数 256 浏览 2 评论 0原文

我使用 Html 助手在表单字段中显示模型数据,例如 Html.TextBoxFor、Html.TextAreaFor。

当模型值为空时,我希望表单字段中的值应该为空。它们在 Safari 和 Firefox 中正常显示,即为空,但在 IE 中,它们在文本字段中显示为“null”(见下图)。

在此处输入图像描述

有任何线索如何解决此问题吗?谢谢。

I use Html helpers to display model data in form fields, e.g. Html.TextBoxFor, Html.TextAreaFor.

When the model values are null, I would expect the values should be empty in the form fields. They are displayed normally in Safari and Firefox, i.e. empty, but in IE, they are shown as "null" in a text field (see image below).

enter image description here

Any clue how to fix this? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

等风也等你 2024-10-31 05:15:55

好吧,结果是 JavaScript 的问题(即 IE 的问题)。在下面的语句中,如果 value == null,IE 将在文本框(或文本区域)中显示 null

$('#someTextBox').val(value);

快速解决方法是简单地显示一个空字符串......

$('#someTextBox').val(value == null ? '' : value);

Well, it turned out to be JavaScript's problem (with IE, that is). In the following statement, if value == null, IE would display null in the textbox (or textarea).

$('#someTextBox').val(value);

The quick fix is simply display an empty string instead...

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