码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2020-07-21 16:36:57      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:script   ext   字符串类型   rip   txt   click   this   运行   tar   

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语句

标签:script   ext   字符串类型   rip   txt   click   this   运行   tar   

原文地址:https://www.cnblogs.com/huahaiwujiang/p/13355111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!