var bb = 'function play(){alert("getplay");}';
var ex = {getplay:eval("("+bb+")")};
ex.getplay();
为什么此处eval中的函数需要用括号括起来?
相关分类