📌  相关文章
📜  javascript 执行字符串代码 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:16.354000             🧑  作者: Mango

代码示例2
var myString = "console.log('I am Batman')";
eval(myString);
//carefull ! This will execute the code, therefore 
//be careful of where/how you got this string.