document.getElementById("txtOutput").value = result;
而不是使用.value=result
,我可以写一些其他内容来重写特定的div或段吗?
答案 0 :(得分:1)
如果你想写一些内容(包括html格式)你可以使用innerHTML orherwise如果只需要文本使用innerText:
<强>的innerHTML 强>
document.getElementById("txtOutput").innerHTML = result
<强>的innerText 强>
document.getElementById("txtOutput").innerText = result;
答案 1 :(得分:1)
是的,你可以。看一下这个简单的JsFiddle示例。
HTML:
<div id="me">
<span>old stuff</span>
</div>
脚本
document.getElementById('me').innerHTML = "new stuff";
答案 2 :(得分:0)
你可以使用innerHTML:
document.getElementById("txtOutput").innerHTML = 'some content';