如何使用 jQuery 将 input[type=submit] 替换为 input[type=text]?

发布于 2024-09-30 06:02:06 字数 334 浏览 1 评论 0原文

可能的重复:
jQuery 更改输入类型

如何将 input[type=submit] 替换为 input[type=text]使用 jQuery?

这种方法行不通:

$('input[type=submit]').removeAttr('type').attr('type','text');

Possible Duplicate:
jQuery change input type

How to replace input[type=submit] to input[type=text] using jQuery?

This way does't work:

$('input[type=submit]').removeAttr('type').attr('type','text');

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

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

发布评论

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

评论(1

遮云壑 2024-10-07 06:02:06

您无法更改该属性类型(不知道为什么,但这就是 firebug 日志的内容),因此您能做的最好的事情就是完全删除输入元素并插入具有正确类型的新输入。

使用 jQuery 进行如下操作:

$('input[type=submit]').after("<input type='text' />");
$('input[type=submit]').remove();

You can't change that property type (don't know why but that is what firebug logs), so the best thing you can do is to totally remove the input-element and insert a new input with the correct type.

Use jQuery with something like this:

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