zoukankan      html  css  js  c++  java
  • js打开、关闭页面和运行代码那些事

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta name="author" content="智能社 - zhinengshe.com">
    <meta name="copyright" content="智能社 - zhinengshe.com">
    <title>智能社 - www.zhinengshe.com</title>
    </head>
    <body>
        <input type="button" value="打开" onclick="window.open('http://www.baidu.com'), '_self'" />
        <input type="button" value="关闭" onclick="window.close();" />
    </body>
    </html>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta name="author" content="智能社 - zhinengshe.com">
    <meta name="copyright" content="智能社 - zhinengshe.com">
    <title>智能社 - www.zhinengshe.com</title>
    <style>
    
    </style>
    <script>
    window.onload=function (){
        var oBtn=document.getElementById('btn');
        var oText=document.getElementById('text');    
        oBtn.onclick=function (){
            var oNewWidnow=window.open('about:blank', '_blank');    
            oNewWidnow.document.write(oText.value);
        };
        
    };
    </script>
    </head>
    
    <body>
        <textarea cols="80" rows="10" id="text"></textarea>
        <input type="button" value="运行" id="btn" />
    </body>
    </html>

  • 相关阅读:
    团队冲刺第一天
    第八周进度报告
    团队会议01
    《梦断代码》阅读笔记(三)
    《梦断代码》阅读笔记(二)
    《梦断代码》阅读笔记(一)
    SCRUM第六天
    SCRUM第五天
    大白话strom——问题收集(持续更新ing)
    maven环境快速搭建(转)
  • 原文地址:https://www.cnblogs.com/heboliufengjie/p/4162831.html
Copyright © 2011-2022 走看看