• 定时器展示简单秒表和页面弹框及跳转


     定时器展示简单秒表demo

    <!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" xml:lang="zh-cn">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
        <title>网页标题</title>
        <meta name="keywords" content="关键字列表" />
        <meta name="description" content="网页描述" />
        <link rel="stylesheet" type="text/css" href="" />
        <style type="text/css"></style>
        <script type="text/javascript">
        //全局变量
        var i=0;
        var timer;//外面定义全局变量
        function start2(){
            //获取网页中id=result的< input>元素
            var inputObj=document.getElementById("result");
            //<input>标记有什么属性.那么,对应的元素对象就有什么属性.
            inputObj.value="该程序已经运行了"+i+"秒!";
            i++;
            //延时器
            //延时器想要实现重复执行,必须在函数中不断调用自己.
            //这吗实现以后,延时器就可以模拟定时器的效果了.
            timer=window.setTimeout("start2()",100);//里面赋值
        }
        function stop2(){
            window.clearTimeout(timer);
        }
        </script>
    </head>
    <body>
    <input id="result" type="button" value="该程序已经运行了0秒!"/><br/>
    <input type="button" value="开始"/ onclick="start2()">
    <input type="button" value="停止" onclick="stop2()"/>
    
    </body>
    </html>

    页面弹框及跳转demo

    <!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" xml:lang="zh-cn">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
        <title>网页标题</title>
        <meta name="keywords" content="关键字列表" />
        <meta name="description" content="网页描述" />
        <link rel="stylesheet" type="text/css" href="" />
        <style type="text/css"></style>
      //注意:谷歌浏览器会拦截弹框可以选择火狐浏览器打开 <script type="text/javascript"> window.onload=init;//是将函数的地址传给了事件,而不是将函数的执行结果传给事件. 有名函数或普通函数,作为地址引用,不能带括号. function init() { //更改网页背景色 window.document.body.bgColor="#ff0000"; //变量初始化 var url2=""; var name2="win2"; var options2="width=400,heigth=300,left=300,top=300"; //打开新窗口的方法,winObj就是新窗口对象 var winObj=window.open(url2,name2,options2); var str="<h2>张三的基本信息</h2>"; str+="姓名:张三"; str+="<br>年龄:28"; str+="<br>性别:男"; winObj.document.write(str); //5秒后,新窗口自动关闭 winObj.setTimeout("window.close()",5000); } </script> </head> <body> <a href="http:\www.baidu.com" target="win2">百度跳转</a> </body> </html>

  • 相关阅读:
    时间戳(1532249295.179) 转日期格式(2018/07/22 16:48:15 179)
    iscroll.js右侧可滑动的菜单,点击每个菜单都会出现本菜单的详情
    canvas绘制的文字如何换行
    移动端H5页面禁止长按复制和去掉点击时高亮
    一列宽度不缩放,一列宽度弹性缩放,且超出后显示省略号
    js钩子机制(hook)
    mCustomScrollbar.js 漂亮的滚动条插件 适应内容自动更新
    axios.js 实例 -----$.ajax的替代方案
    用 async/await 来处理异步实例
    C#入门经典第18章-WEB编程
  • 原文地址:https://www.cnblogs.com/cxx8181602/p/6154668.html
Copyright © 2020-2023  润新知