我能够动态生成一个 Unicode 字符,并<div>
通过使用类似的序列将其插入到 a 中ð
,但现在我想将此输入检索为转义序列,而不是字符本身。
请参阅此 JSFiddle 示例:
<button id="insertDh">insert funny d to mytext</button>
<div id="mytext"><i>mytext: please click button above</i></div>
<hr>
<textarea id="theSource"></textarea>
<button id="getSource">get mytext's source</button>
$("#insertDh").click(function() {
$("#mytext").html("ð");
});
$("#getSource").click(function() {
$("#theSource").val($("#mytext").html());
});
也就是说,当我点击“get mytext's source”时,我想在textarea中填入ð
而不是ð。这可能吗?如果是这样,怎么做?