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

JavaScript 回调函数

时间:2015-12-11 01:16:38      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE>
<html>
 <head>
  <title> new document </title>
 </head>
 <body>
    <div id="div1">aaa </div>
    <div id="div2">bbb </div>
    <div id="div3">ccc </div>
 </body>
 <script type="text/javascript">
 
   function clickEvent(id,callback){
        var boxDom = document.getElementById(id);
        boxDom.onclick=function(){
            if(callback){

           //通过参数将当前的dom元素返回出去
               callback(this);
            };
        };
   };

   clickEvent("div1",function(dom){
       dom.style.color = "red";
   });
   
   clickEvent("div2",function(dom){
       dom.style.fontSize = "60px";
   });
   
   clickEvent("div3",function(dom){
       dom.style.color = "red";
   });
 </script>
</html>

JavaScript 回调函数

标签:

原文地址:http://www.cnblogs.com/c2603/p/5037731.html

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