js如何实现全局变量在通过函数运算之后,保存函数运算后的全局变量?
就像指针变量那样var str_exp = "";
function test(obj){
str_exp += obj.value;
document.getElementById("input").value = str_exp;
}
var index_op = str_exp.split();
var index_op_r = index_op.reverse();
这样得到的index_op_r的结果仍为空 如何让函数执行之后保留运行后的结果?