版块列表
保密 男 女 未知
${username}
头衔: 无 ${title}
关注: ${focus_count}
粉丝: ${focused_count}
${ugname}
版本:4.0.0
K.time方法返回指定时间的时间戳,默认为当前时间的时间戳。
// datetime为时间日期格式的字符串,如果不设置则返回当前时间戳 K.time(datetime=null)
K.time() // 返回1621502743 K.time('2008-08-08') // 返回1218153600 K.time('2008-08-08 08:08:08') // 返回1218154088
K.in_arrays方法_查看字符串是否在数组或字符串里
版本:4.0.0 K.in_arrays方法可以查看字符串是否在数组或字符串里 /* * 查看字符串是否在数组或字符串里 * @param needle 搜索的字符串 * @param haystack 被搜索的字符串或数组 * @param allin 被搜索的对象为数组时生效,true为必须每个元素都包含返回true,false为最少一个包含返回true * @param delimiter 如果被搜索的对象是字符串用什么来分割,默认, */ K.in_arrays(needle,
2021-05-25
K.swiper方法_swiper插件加载方法
版本:4.0.0K.swiper(selector,options); // 等同于 new Swiper(selector, options); // 具体详细用法参考swiper官网
2021-06-25
K.md5方法_字符串MD5加密方法
版本:4.0.0 用法举例: K.md5('admin'); // 返回"21232f297a57a5a743894a0e4a801fc3"
2021-06-23
PHPMailer发信插件
系统默认的发信插件,因为体积的原因新安装系统默认不带该插件,需要您自行安装及配置,如果您不需要发送邮件则无需安装,该插件默认10天豆或1元终身,vip用户免费使用。 该应用下载地址:https://www.hadsky.net/zhanzhang/addons?id=4
2020-08-16
居民身份证合法性检验接口
请求地址:https://www.hadsky.net/zhanzhang/service?request=idcardverification 请求方式:GET/POST 返回数据:JSON 请求参数: 参数 必需 参考值 说明
2021-05-16
K.select_selected方法
版本:4.0.0 K.select_selected方法为给select控件进行初始赋值的方法,需要select控件带有data-value属性 // selector为赋值目标,默认body即整个页面 K.select_selected(selector) 用法举例: K.select_selected('select.select') // 将会给所有带有类select的select控件赋值(自身的data-value值)
2021-05-21
K.return_set_html方法_快速生成HTML输入框
版本:4.0.0 K.return_set_html方法可以快速生成HTML输入框,type支持:text,number,email,label,password,checkbox,checkboxs,textarea,code,nav,json,editor,switch,toggle,upload,uploads,time /* * data:[{"name":"","title":"","content":"","type":"","value":""},] */ K.return_set_
K.qrcode方法_字符串生成二维码方法
版本:4.0.0/* * 将字符串生成二维码 * text 需要被二维码的字符串 * options包含selector,width,height,title,complete,submit 宽高 * 若selector不存在则弹出二维码窗口 */ K.qrcode(text, options = null); 用法举例: // 会弹出二维码窗口 K.qrcode('https://www.hadsky.net'); // 自定义了弹出的二维码窗口标题 K.qrcode('https:/
HadSky轻论坛数据导入HadSky轻商城字段对应说明
版块导入对应: { "title":"name", "webtitle":"seo_title", "webkeywords":"seo_keywords", "webdescription":"seo_description" } 文章导入对应: { "looknum":"look_count", "zannum":"zan_count", "fs":"reply_count", "content":"content_text", "sortid":"fid", "post
2020-07-18
文章内容关键词过滤接口
请求地址:https://www.hadsky.net/zhanzhang/service?request=getkeywords 请求方式:GET/POST 返回数据:JSON 请求参数: 参数 必需 参考值 说明
2021-08-23