码迷,mamicode.com
首页 > Web开发 > 详细

JS中回调函数的使用

时间:2016-07-30 22:38:24      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">

Array.prototype.each = function(callback){
if(typeof callback === ‘function‘){
for(var i=0;i<this.length;i++){
callback(i,this[i]);
}
}
};

var arr = ["1",‘a‘,‘g‘];
function handler(i,o){
console.log(i+":"+o);
}
arr.each(function (i, o) {
if(i>1){
console.log(o);
}
});

arr.each(function () {

});
</script>
</head>
<body>

</body>
</html>

JS中回调函数的使用

标签:

原文地址:http://www.cnblogs.com/hwgok/p/5721742.html

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