<html>
<div id=test type="hidden">4+4-4*4/4</div>
<input onclick="test();" type=button value="test"></input>
<div id=test2></div>
<script>
function test() {
var test = document.getElementById("test").textContent;
document.getElementById("test2").innerHTML = test; //need output to be mathmatical
}
</script>
</html>
这是我编写的测试代码,目的是清楚地表明我的意思是我需要元素id的输出是数学的,答案应为4。