gpt4 book ai didi

javascript - 如何将特殊字符转换为html?

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

我目前有这个:

var loc = "Stati Uniti d'America"
jQuery('#heading_results h2').text(loc);

我得到的结果是:

<h2>Stati Uniti d&#039;America</h2>

这是因为由于其他原因,我通过 php 发送带有特殊字符的字符串,但我需要在 html 中将它们转换回来。

它应该显示为

<h2>Stati Uniti d'America</h2>

最佳答案

为了使用&字符代码,您必须使用.html():

var loc = "Stati Uniti d&#039;America"
jQuery('#heading_results h2').html(loc);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="heading_results">
<h2></h2>
</div>

关于javascript - 如何将特殊字符转换为html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43295477/

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