Module: MoyeUtils 工具方法
优质
小牛编辑
134浏览
2023-12-01
Methods
<static> addClass(obj, cls)
- addClass 给 dom 增加 class
Parameters:
Name Type Description obj
Object DOM对象 cls
String class名称
<static> getType(obj)
- getType 获取参数类型
Parameters:
Name Type Description obj
* 任意元素 Returns:
<object [String,Object,Array,Element···]>
- Type
- String
<static> hasClass(obj, cls)
- hasClass dom是否存在class
Parameters:
Name Type Description obj
Object DOM对象 cls
String class名称 Returns:
true/false
- Type
- Boolean
<static> isBlitz()
- isBlitz 是否为blitz
Returns:
true/false
- Type
- Boolean
<static> parseToDOM(str)
- parseToDOM 字符串转DOM对象
Parameters:
Name Type Description str
String DOM字符串 Returns:
<object Element>
- Type
- Object
<static> printLog(message)
- printLog log输出
Parameters:
Name Type Description message
String 需要输出的内容
<static> removeClass(obj, cls)
- removeClass 给dom删除class
Parameters:
Name Type Description obj
Object DOM对象 cls
String class名称
<static> setDefaultKeyEvent(value)
- setDefaultKeyEvent 设置是否阻塞系统默认按键事件
Parameters:
Name Type Description value
Boolean false代表由系统处理,true代表应用处理后不再向上传递给系统
<static> writeFile(param, success, fail)
- writeFile 给dom删除class
Parameters:
Name Type Description param
Object 配置参数 Properties
Name Type Description filename
String 文件名称 mode
String 模式 data
String 内容 success
Funtion(Event) 成功回调 fail
Funtion(Event) 失败回调