在网页上Run Code (测试代码) 功能

本文介绍了如何在网页上实现代码测试功能,常见于论坛和博客中。用户可以输入代码并直接在浏览器中运行,提升交互体验。
摘要由CSDN通过智能技术生成

平时在很多论坛或者博客中,都可以看到作者或者评论者的文章中,都会摆出一段代码,并且能实现在线测试.

实现此功能的代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" content="MapleJan" />
<title>Run Code</title>
<meta name="description" content="在网页上测试文本框中的代码.">
<script>
function runCode(textId) { 
	var code = document.getElementById(textId).value;
	var newWindow = window.open(); 
	newWindow.opener = null; //对创建该窗口(newWindow)的Window不进行任何操作.
	newWindow.document.write(code); 
	newWindow.document.close(); //关闭open()方法打开的文文档流.
};
function copyCode(textId) {
	if(window.clipboardData) { //判断浏览器,目前仅支持IE
	var 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值