执行作为字符串存储的JavaScript代码

执行作为字符串存储的JavaScript代码

如何执行作为字符串的JavaScript?

function ExecuteJavascriptString(){
    var s = "alert('hello')";
    // how do I get a browser to alert('hello')?}


qq_遁去的一_1
浏览 302回答 3
3回答

慕桂英4014372

带着eval("my script here")功能。

慕码人8056858

您可以使用一个函数来执行它。例子:var theInstructions = "alert('Hello World'); var x = 100";var F=new Function (theInstructions);return(F());
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript