js中 匿名函数作为参数执行,但是我要返回匿名函数中运算产生的值,应该怎么写?function test(){ var x func("test",function(data){ x = data.value }) alert(x)}可以使用闭包的方法:functiona2023-04-27JavaScript370