首页 > 代码库 > 预习代码发一下

预习代码发一下

<!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="http://www.mamicode.com/该程序已经运行了"+i+"秒!";
        i++;
        //延时器
        //延时器想要实现重复执行,必须在函数中不断调用自己.
        //这吗实现以后,延时器就可以模拟定时器的效果了.
        timer=window.setTimeout("start2()",100);//里面赋值
        

    }
    function stop2(){
        window.clearTimeout(timer);
    }
    </script>
</head>
<body>
<input id="result" type="button" value="http://www.mamicode.com/该程序已经运行了0秒!"/><br/>
<input type="button" value="http://www.mamicode.com/开始"/ onclick="start2()">
<input type="button" value="http://www.mamicode.com/停止" onclick="stop2()"/>

</body>
</html>

技术分享

<!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.mamicode.com/news.html" target="win2">公司新闻</a>

</body>
</html>

技术分享

预习代码发一下