04
2018
08

Javascript 预览代码

在我们编写了客户端代码,如 css、javascript、(x)html后,通常需要进行调试,而本代码可以让您在新打开的窗口中预览,方便及时修改。同时也可以用于代码演示。

<textarea cols="70" rows="20" id="code"></textarea>
<script type="text/javascript"> 
<!-- 
function openWindow() 
{ 
    newWindow = window.open('','newWindow','height=300,width=500,scrollbars=auto'); 
    if (newWindow != null) 
    { 
        var windowHTML= document.getElementById('code').value; 
  
        newWindow.document.write(windowHTML); 
        newWindow.focus(); 
    } 
} 
//-->
</script>
<input value='预览代码' onclick="openWindow();" type="button" />

原文链接:https://www.qiquanji.com/post/5114.html

本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。

gzh

微信扫码关注

更新实时通知

« 上一篇 下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。