gpt4 book ai didi

jquery - 将文本添加到 jQuery (this).text 前面

转载 作者:行者123 更新时间:2023-12-01 07:37:09 29 4
gpt4 key购买 nike

我有这一行输出 span 标记的名称值:

$(this).text($(this).attr("name"));

在“名称”值之前添加字符(特别是美元符号 ($))的最佳方式是什么。

最佳答案

尝试:

$(this).text("$" + $(this).attr("name"));

对两个字符串使用 + 运算符会将它们连接起来。

查看更多:https://www.w3schools.com/js/js_datatypes.asp

$(function() {
$("button").click(function() {
if ($(this).text().indexOf("$") >= 0) {
$(this).html($(this).attr("name"));
} else {
$(this).html("$" + $(this).attr("name"));
}
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button name="2000">2000</button>

上面的示例切换按钮内部 HTML 中 $ 的外观。

关于jquery - 将文本添加到 jQuery (this).text 前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61759920/

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