gpt4 book ai didi

jquery - 使用 jquery 将编码字符作为文本插入动态生成的元素中

转载 作者:行者123 更新时间:2023-12-01 04:48:09 25 4
gpt4 key购买 nike

我正在尝试将 × 插入到我通过 jquery 动态生成的按钮的文本中:

var closebutton = $('<button/>',{
"type": "button",
"class": "close",
"data-dismiss": "alert",
"aria-hidden": true,
});
$(closebutton).text("&times;");

因为 × 用引号括起来,所以它会作为字符串插入。

有没有办法将其添加为编码字符?

最佳答案

是 - 使用 html() 而不是 text()

closebutton.html("&times;");

请注意,您不需要将 closebutton 重新包装在 $() 中,因为它已经是一个 jQuery 对象。

关于jquery - 使用 jquery 将编码字符作为文本插入动态生成的元素中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25676224/

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