gpt4 book ai didi

javascript - 更改 html span 内部文本

转载 作者:行者123 更新时间:2023-11-28 18:30:14 26 4
gpt4 key购买 nike

我想更改跨度的值,我尝试这样做:

$('#tList span.k-input').textContent = "(" + list.length + ") " + $('#tList span.k-input').html();

 $('#tList span.k-input').html() = "(" + list.length + ") " + $('#tList span.k-input').html();

如果我将鼠标悬停在 $('#tList span.k-input').html() 上,它会显示正确的值,但 html 中没有任何反应。

最佳答案

这应该有效

var html = "(" + list.length + ") " + $('#tList span.k-input').html();
$('#tList span.k-input').html(html)

Read more

关于javascript - 更改 html span 内部文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38182040/

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