javascript 中怎么封装函数
展开全部
函数相当于一个方法,用来多次调用的。
函数封装有以下几种
function getName (){/**some code here**/};
var getName = function(){/**some code here**/};
(function(){/**some code here**/})();//这种属于匿名函数自执行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码如下:
var arr = [aPt, aSec];for(var i = 0; i < arr.length; i++){ arr[i].onfocus = function(){ if(this.value == this.getAttribute('value')){ this.value = ''; } }; arr[i].onblur = function(){ if(!this.value){ this.value = this.getAttribute('value'); } };}
var arr = [aPt, aSec];for(var i = 0; i < arr.length; i++){ arr[i].onfocus = function(){ if(this.value == this.getAttribute('value')){ this.value = ''; } }; arr[i].onblur = function(){ if(!this.value){ this.value = this.getAttribute('value'); } };}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询