js 调用字符串类型的 js语句

Posted huahaiwujiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 调用字符串类型的 js语句相关的知识,希望对你有一定的参考价值。

data(){
  return{
    codeTxt:‘(function() {console.log("run")})()‘
 }
}
<textarea  v-model="codeTxt"></textarea>
  
<button class="btn" @click="runCode">运行</button>


runCode(){

// 第一种
let func = new Function(this.codeTxt); 
func();
  
// 第二种
eval(this.codeTxt)
  

// 第三种
setTimeout(this.codeTxt)

//第四种
<script>this.codeTxt</script>
  
}

  

以上是关于js 调用字符串类型的 js语句的主要内容,如果未能解决你的问题,请参考以下文章

20个简洁的 JS 代码片段

20个简洁的 JS 代码片段

jsp 如何调用js

JS中for...in 语句用于对数组或者对象的属性进行循环操作吗?

js原生代码合集

0408js