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

base.js

时间:2014-08-02 23:15:34      阅读:607      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   cti   ar   div   

function on(node,eventType,handler)
{
    //e=window.event||e;
   node=typeof node=="string"?document.getElementById(node):node;
   if(document.all) //IE
   {
      node.attachEvent("on"+eventType,handler);
   }
   else
   {
      node.addEventListener(eventType,handler,false);
   }
}
//on(btn,"click",function(){alert("1")});

1、trim()
function trim(ostr)
{
   return ostr.replace(/^\s+|\s+$/g,"");
}

2、isNumber、isString、isBoolean、isFunction、isNull、isUndefined、isEmpty、isArray
function isNumber(s)
{
   return !isNaN(s);
}

function isString(s)
{
  return typeof s==="string";
}

function isBoolean(s)
{
  return typeof s==="boolean";
}

function isFunction(s)
{
  return typeof s==="function";
}

function isNumm(s)
{
  return s===null;
}

function isUndefined(s)
{
  return typeof s==="undefined";
}

function isEmpty(s)
{ 
   return /^\s*$/.test(s);
}

function isArray(s)
{
  return s instanceof Array;
}

base.js,布布扣,bubuko.com

base.js

标签:style   blog   color   os   io   cti   ar   div   

原文地址:http://www.cnblogs.com/gossip/p/3864899.html

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