gpt4 book ai didi

javascript - 获取元素的内容而不在jQuery中转义

转载 作者:行者123 更新时间:2023-11-30 10:31:54 25 4
gpt4 key购买 nike

我想获取元素的内容而不任何更改。当我使用 .html() 时,它会不必要地转义字符,例如 && .

在我的代码中,内容是来自服务器的数据。问题是原始数据已被转义。我也不想使用转义过程。这意味着2次更改原始数据。

任何想法将不胜感激。

代码如下:

<html>
<head>
<style>
p { color:blue; margin:8px; }
b { color:red; }
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<p><b>Hey, Give me originial HTML contents</b>, "& < >" without any escapes. pls</p>
<p></p>
<script>
var str = $("p:first").html();
$("p:last").text(str);
</script>
</body>
</html>

编辑:如上所述,我需要没有变化的数据。 HTML 标签也是。我知道 .text() 的作用。

编辑2:str 必须准确。 <b>Hey, Give me originial HTML contents</b>, "& < >" without any escapes. pls .请理解这个问题不是关于如何正确显示的。变量 str 必须包含正确的(原始)数据。

最佳答案

你应该使用相同的组合:-

var str = $("p:first").html();
$("p:last").html(str);

var str = $("p:first").text();
$("p:last").text(str);

或者,如果您想按原样显示标签,则必须转义“<”、“>”、“&”等

var  str = $('p:first').html();
str = str.replace(/>/g,"&gt;").replace(/</g, "&lt;");
$("p:last").html(str);

关于javascript - 获取元素的内容而不在jQuery中转义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16454071/

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