HTML控件美化方法集合

puyuetian 发布于: puyuetian.js , 2021-06-25

版本:4.0.0

K.input2json方法_可视化JSON数据编辑器,该方法仅支持一层JSON数据的解析及编辑。

// 用法举例
K.input2json(inputs)


K.input2checkbox方法_多选框控件美化器

K.input2checkbox(inputs)

K.select2toggle方法_select控件开关美化器

// 支持的值:开启,关闭,启用,禁用,打开,显示,隐藏,open,close,on,off
// <select><option value="1">开启</option><option value="0">关闭</option></select>
K.select2toggle(selects)

K.input2number方法_整数输入器

// options = {
// return_value : 0, // 输入非法时返回的值
// max:9, // 最大不超过的值
// min:0 // 最小不小于的值
// }
K.input2number(selector,options)

K.input2password方法_密码输入器

// 该方法返回的值为md5加密后的值
// options = {minlength:0,maxlength:16}
K.input2password(selector,options);

K.input2datetime方法_日期时间选择器

// options = {
// type:'Y-m-d H:i:s',
// return_time:true // true返回时间戳,false返回type格式的字符串
// };
K.input2datetime(selector,options = null)

K.input2label方法_标签选择器

/*
 * 分隔符input人性化/标签选择器
 * selector 要被转化的input对象
 * options 为配置信息,以下为options的对象及功能
 * height 高度(宽度自适应)
 * select 标签选择模式,该模式不可编辑/删除/移动,=字符串或数组
 * add 是否显示添加按钮
 * del/move/edit 删除/移动/编辑按钮,select模式下无效
 * delimiter input内容以什么字符分割,默认,
 * str_start input内容开头的字符串,该字符串不会被记入分割字符串里
 * str_end input内容结尾的字符串
 * number 只能输入数字,默认什么都可以输入
 */
K.input2label(selecor,options=null);


发表评论
评论列表
加载更多