我正在尝试声明一个变量,其值是另一个当时未设置的变量.
var add = 1 + three; var three = 3; document.getElementById('thediv').innerHTML = add; //results in "NaN"
有没有办法使用Jquery / Javascript来做到这一点?