标签: javascript jquery
我在运行时将JavaScript代码初始化为字符串变量。如何执行存储的JavaScript代码。
答案 0 :(得分:4)
您可以使用eval
eval
var code = "alert('sdfdf');"; eval(code); // this will execute the code inside the string