mp-methods
v1.1.0
Published
一个公共用法的js库
Downloads
9
Readme
添加一个依赖
npm i mp-methods
<br/>
引入这个包
import mpMeths from 'mp-methods'
<br/>
挂载到全局
Vue.prototype.$mpMeths = mpMeths;
<br/>
判断数字,字符串,数组,对象,布尔,函数,空,未定义,promise,node,element
isNumber ,isString,isArray,isObject ,isBoolean,isFunction ,isNull ,isUndefined,isPromise,isNode ,isElement
隐藏所有img元素
hide(document.querySelectorAll('img'))
操作节点上都有一个classList对象
hasClass(document.querySelector('p.special'),'special') true
移除p 具有类的special类
toggleClass(document.querySelector('p.special'),'special')