Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、私はこのような div を持っています:
<div>1+1</div>
これらの「1 + 1」をJavaScriptに取得して「2」に計算するにはどうすればよいですか? 前もって感謝します!
javascript で要素の innerHTML プロパティを使用して、値を抽出できます。
document.getElementById("div").innerHTML
次に、 eval() メソッドを使用して数式を評価します。
var exp=document.getElementById("div").innerHTML; alert(eval(exp));