码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript-DOM

时间:2015-06-16 18:47:39      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

如何点击按钮更换样式

<img id="imgid" src="img/1.jpg">
<button onclick="demo()">点击</button>
<script>
    function demo(){
        document.getElementById("imgid").src="img/2.jpg"
   
}
</script>
 
如何使用句柄点击按钮弹出

<button id="bat">点击</button>
<script>
        document.getElementById("bat").addEventListener("click",function (){
            alert("hello")
        })
</script>

 

<button id="bat">点击</button>
<script>
        x=document.getElementById("bat")
        x.addEventListener("click",hello)
        x.addEventListener("click",world)
        function world(){
            alert("world")
        }
        function hello(){
            alert("hello")
        }
</script>

Javascript-DOM

标签:

原文地址:http://www.cnblogs.com/yinlu/p/4581444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!