gpt4 book ai didi

javascript - 用 jQuery 替换元素

转载 作者:太空宇宙 更新时间:2023-11-04 15:22:08 25 4
gpt4 key购买 nike

我有 <form>我想用 <button> 替换我页面上的 s秒。给我带来困难的是我想使用 <form> 的值的提交输入作为按钮的 html。

<form action="/postcomment/" method="post">
<inputs>
.
.
.
<input type="submit" value="Reply">
</form>

成为

<button class="postcomment">Reply</button>

我很难完全理解这里的链接。我需要获取数据值(例如“回复”),然后在一个 jQuery 操作中将它们插入到按钮元素中(或者使用类似 .index() 的方式管理排序),但我还不知道该怎么做.

最佳答案

这里的工作示例:http://jsfiddle.net/Mch86/

$(document).ready(function(){
$('form').each(function(){
button = $('<button>' + $('input[type="submit"]', this).val() + '</button>').addClass($(this).attr('action').replace(/\//g, ''));
$(this).replaceWith(button);
});
});

关于javascript - 用 jQuery 替换元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7637803/

25 4 0
文章推荐: java - 如何制作一个猜数字游戏
文章推荐: c++ - 将两个 vector 转换为 vector>
文章推荐: c++ - 连续分配大数据有好处吗?
文章推荐: jquery - 在 jQuery 中使用类时为父
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com