Dom之事件调用

 dom事件的调用:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type="text/javascript">
        function f1() {
            alert("f1函数被调用了!");
        }
        function f2() {
            alert("f2函数被调用了!");
        }
    </script>
</head>
<body>
    <input id="b1" type="button"  onclick="document.ondblclick=f1",value="第一个钮"  />
    <input id="b2" type="button"  onclick="document.onclick = f2",value="第二个钮" />
    <input id="Button1" type="button" value="button" />

</body>
</html>

在html页使用confirm,navigate,setinterval,clearinterval,settimeout:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type="text/javascript">
        function confirmdemo(){
            if (confirm("确定删除吗?")){
                alert("删了");
            }
            else{
                alert ("没删");
            }
        }
      
    </script>
</head>
<body>
    <input type="button" id="btncel" value="删除" onclick="confirmdemo()"; />
    <input type="button" id="btnnavigate" value="navigate" onclick="navigate('HtmlPagelearning.html')"; />

</body>
</html>

posted on 2013-01-30 12:54  蔡嘉  阅读(196)  评论(0编辑  收藏  举报

导航