gpt4 book ai didi

javascript - JQuery 更改标签中的文本

转载 作者:行者123 更新时间:2023-11-28 16:55:32 25 4
gpt4 key购买 nike

代码:

$('#FilesDataTable_length').children()[0];

结果: http://prntscr.com/895z0y

我需要将“显示”更改为“显示:”。谁能帮忙?

最佳答案

这是更新所有类似的 label 的全局解决方案:

HTML:

<label> Show
<select id='111'>
<option>1</option>
<option>2</option>
</select>
</label><br><br>

<label> Other
<select id='222'>
<option>1</option>
<option>2</option>
</select>
</label>

JS:

$('label').each( function () {
var text = $(this).contents().first()[0];
text.textContent=(text.textContent) + ': ';
});

See Example

关于javascript - JQuery 更改标签中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32232506/

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