我想向文本字段发送一些 html 特殊字符,然后使用 javascript 将其恢复为原始格式:就像我发送“&pi”一样,它会在文本输入中显示“π”,当我使用 javascript把它拿回来,我应该得到“&pi”,但我只能得到“π”,而不是“&pi”。请帮忙,我的代码如下:
<script type="text/javascript">
function qpush(a) {
document.getElementById('input').value += a;
}
function show(a) {
alert(document.getElementById('input').value);
}
</script>
<input type="text" id="input" />
<input type="button" onclick="qpush('π');" value="π" />
<input type="button" onclick="show()" value="go" />