Home  >  Article  >  php教程  >  网页中运行代码的实现方法

网页中运行代码的实现方法

WBOY
WBOYOriginal
2016-06-07 17:23:301998browse

经常我们为了找一些JS特效,看到代码但却不知道代码运行的结果是怎样的,还好,好多JS内容的网站为我们提供了网页代码运行的功能,只需把要运行的代码放在运行的代码区域 点击运行按纽就会看到运行效果,是不是很方便呢?其实这个功能不难,你也可以实现!


下面的网页运行代码功能的代码来自网络,原创网站域名已经注销,经测试代码功能完整且简单易懂,现分享学习。

先上效果图:

网页中运行代码的实现方法

<html>    
<head>    
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">    
<title>启步网网络、IT(挨踢)职业游民学习娱乐之家.</title>    
<script type="text/javascript" language="javascript" >   
//运行文本域代码    
function Preview(obj) {    
var TestWin=window.open(&#39;&#39;,&#39;&#39;,&#39;&#39;); //打开一个窗口并赋给变量TestWin。    
TestWin.opener = null // 防止代码对论谈页面修改    
TestWin.document.write(obj.value); //向这个打开的窗口中写入代码code,这样就实现了运行代码功能。    
TestWin.document.close();    
}    
//复制文本域代码    
function copyCode(obj) {    
var rng = document.body.createTextRange();    
rng.moveToElementText(obj);    
rng.scrollIntoView();    
rng.select();    
rng.execCommand("Copy");    
rng.collapse(false);    
}    
//另存文本域代码    
function saveCode(obj) {    
var winname = window.open(&#39;&#39;, &#39;_blank&#39;, &#39;top=10000&#39;);    
winname.document.open(&#39;text/html&#39;, &#39;replace&#39;);    
winname.document.writeln(obj.value);    
winname.document.execCommand(&#39;saveas&#39;,&#39;&#39;,&#39;启步网,网络、IT(挨踢)职业游民学习娱乐之家.htm&#39;);    
winname.close();    
}    
//收藏本页代码    
function addBookmark(title,url) {    
if (window.sidebar) {    
window.sidebar.addPanel(title, url,"");    
} else if( document.all ) {    
window.external.AddFavorite(url,title);    
} else if( window.opera && window.print ) {    
return true;    
}    
}    
</script>   
</head>    
<BODY leftMargin=0 marginwidth="0" >    
<TEXTAREA id=code1 style="WIDTH: 560px; HEIGHT: 200px">    
这里是你想运行的代码区域    
</TEXTAREA>    
<BR><BUTTON onclick=Preview(code1)>运行代码</BUTTON><BUTTON 
onclick=copyCode(code1)>复制代码</BUTTON><BUTTON 
onclick=saveCode(code1)>另存代码</BUTTON><BUTTON 
onclick=addBookmark(document.title,location.href)>收藏本页</BUTTON>    
</body>    
</html>



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn