如何执行一些作为字符串的 JavaScript?
function ExecuteJavascriptString() { var s = "alert('hello')"; // how do I get a browser to alert('hello')? }
使用该eval功能,例如:
eval
eval("my script here");