Execute JavaScript code stored as a string

前端 未结 20 775
北荒
北荒 2020-11-22 08:58

How do I execute some JavaScript that is a string?

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


        
20条回答
  •  隐瞒了意图╮
    2020-11-22 09:12

    Try this:

      var script = "";
      //using jquery next
      $('body').append(script);//incorporates and executes inmediatelly
    

    Personally, I didn't test it but seems to work.

提交回复
热议问题