博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
base.js
阅读量:6466 次
发布时间:2019-06-23

本文共 901 字,大约阅读时间需要 3 分钟。

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、isArrayfunction 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;}

转载于:https://www.cnblogs.com/gossip/p/3864899.html

你可能感兴趣的文章
终端输入ubuntu gedit 中文显示乱码解决方法
查看>>
优化SQL SERVER系统性能
查看>>
高清精美壁纸:2013年5月桌面日历壁纸免费下载
查看>>
HDU 1257
查看>>
Jimmy Nilsson谈LINQ to SQL
查看>>
hdu 2438+hdu 3400(三分求极值)
查看>>
数据库信息DBA日常工作职责——Eygle大师对DBA的七点建议
查看>>
程序音频iOS 音频指南:如何称职的管理自己的音频系统
查看>>
nullnull转置整数方阵
查看>>
新特性版本Impala各版本新特性
查看>>
几款代码混淆器(DotFuscator, .NET Reactor, xenocode)(转)
查看>>
iostat 结果简单分析
查看>>
(转)谈免驱
查看>>
软件的模块化开发
查看>>
求圆心
查看>>
wp中的动画
查看>>
VS 2010配置Qt 4.8.5
查看>>
Storm-源码分析- bolt (backtype.storm.task)
查看>>
CF 256C Furlo and Rublo and Game【博弈论,SG函数】
查看>>
WCF心跳判断服务端及客户端是否掉线并实现重连接
查看>>