gpt4 book ai didi

javascript - 使用 Jquery 从所有元素创建一个字符串

转载 作者:行者123 更新时间:2023-11-28 13:48:57 25 4
gpt4 key购买 nike

Possible Duplicate:
Delimiting a text string with jQuery

我已经从所有 .postTag 创建了一个字符串使用jquery

sample:
<span class='postTag'>Jquery</span>
<span class='postTag'>php</span>
<span class='postTag'>mysql</span>

输出:

<input type='hidden' id='allInsertedTags' value='Jquery,php,mysql' />

谢谢;D

最佳答案

试试这个:

$("span.postTag").map(function() { return $(this).text(); }).get().join(", ");

关于javascript - 使用 Jquery 从所有元素创建一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12121138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com