ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 表单请求通信 | 设置参 | 说明 | | --- | --- | | id | 字段索引 | | name | 字段索引(与id同值) | | note | 字段提示名称 | | limit | 限制类型(多个用,隔开) | | 校对编号 | 说明 | | --- | --- | | 1 | 非空 | | 2 | 字数限制 ( limit_min 最小值 / limit_max 最大值 ) | | 3 | 数值限制 ( limit_min 最小值 / limit_max 最大值 ) | | 4 | 表单同值 ( limit_name 比对字段id ) | | 5 | 只能为数字 | | 6 | 只能为邮箱 | | 7 | 只能字母或数字 | | 8 | 只能为手机号 | | 9 | 只能为身份证号 | ~~~ <form id="form"> <input type="text" class="mui-input-clear" placeholder="请输入手机号" name="account" id="account" limit="1" note="手机号"> <button type="submit" class="bg_click" id="submit">登 录</button> </form> ~~~ * JS案例 ~~~ document.addEventListener('plusready', function(){ $('#form').submit(function(){ var data = ser2json($(this)); data.sbh_type = 'function'; //回调执行函数名 // 表单格式校对 if(net_limit({'form':$(this)}) == false){ return false; }; // 通信 net({'url':'url',data:data,pass:['account'],end:['submit','登 录','登 录 中 ...']}); // 阻尼中止 net_submit_end('submit','登 录'); return false; }); }); ~~~