使用元素ID中的数学符号和数字作为方程式

时间:2019-05-30 06:30:37

标签: javascript html math

<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。

0 个答案:

没有答案