gpt4 book ai didi

javascript - 正确的 jQuery 来替换 元素中的内容

转载 作者:行者123 更新时间:2023-12-02 19:57:14 24 4
gpt4 key购买 nike

$(document).ready( $("#machType").each(function() {$(this).replace('machine1 (windows)', 'Windows Machine 1');}) ); “;上面的代码片段对于更改跨度的内容是否正确? (当然包含在标签中)

假设我有 machType

<span id="machType">Machine 1 (windows)</span></span id="machType">Machine 2 (windows)

最佳答案

这样的东西应该会有所帮助(给每个span一个machTypeclass):

$(document).ready(function () {
$(".machType").each(function () {
$(this).text($(this).text().replace(/Machine (\d+) \((.*)\)/, function (full, num, os) {
return [os[0].toUpperCase(), os.substring(1), " Machine ", num].join("");
}));
});
});

关于javascript - 正确的 jQuery 来替换 <span> 元素中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8465469/

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