具有标题属性的空输入字段的 JQuery 序列化函数

发布于 2024-10-16 17:48:21 字数 348 浏览 5 评论 0原文

我有以下表单输入字段:

<input type="text" value="" title="Enter item description" name="description">

当我在包含表单上调用 JQuery 的序列化函数时,它会给出以下内容:

description=Enter+item+description

有谁知道为什么 serialize() 将标题作为描述字段的值?我该如何解决这个问题?我希望结果是:

description= (i.e. no value)

I have the following form input field:

<input type="text" value="" title="Enter item description" name="description">

When I call JQuery's serialize function on the containing form, it gives me the following:

description=Enter+item+description

Does anyone know why serialize() takes the title as a value for the description field? How can I get around this? I want the result to be:

description= (i.e. no value)

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

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

发布评论

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

评论(1

宫墨修音 2024-10-23 17:48:21

这不是 serialize() 的行为。我认为您可能有另一个插件或代码将标题标签的值加载到字段的值中。我知道有很多插件使用该值来创建幻影文本或在输入字段上进行掩码。当您使用 serialize() 时,这可能会导致它被视为值。实际上我刚刚测试过它并且它按预期工作。请参阅此处:http://jsfiddle.net/XrVvM/

Thats not the behavior of serialize(). I think you may have another plugin or code that is loading the value of the title tag into the value of the field. I know there are many plugins that use the value to create ghost text or to do a mask on the input field. That maybe causing it to be considered the value when you use serialize(). I actually just tested it and it works as expected. See here: http://jsfiddle.net/XrVvM/

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