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

JS代码在线运行

时间:2018-08-15 16:59:53      阅读:787      评论:0      收藏:0      [点我收藏+]

标签:pen   wpa   fun   button   text   value   utf-8   win   type   

<meta charset=‘utf-8‘>

<textarea id=‘txt‘ rows=‘30‘ cols=‘110‘></textarea>

<input type="button" id=‘btn‘ value="运行">

<script>

var btn = document.getElementById(‘btn‘),
txt = document.getElementById(‘txt‘);

btn.onclick = function () {
//open是有返回值的,返回值就是新打开的窗口
var newPage = window.open(‘newPage‘);
//再往新窗口里写内容
newPage.document.write(txt.value);
}

JS代码在线运行

标签:pen   wpa   fun   button   text   value   utf-8   win   type   

原文地址:http://blog.51cto.com/11123779/2160295

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