課程
/前端開發(fā)
/jQuery
/jQuery插件——Validation Plugin
我把老師的視頻下載下來,跟著視頻一起寫,怎么都不對
2016-06-26
源自:jQuery插件——Validation Plugin
正在回答
<script> ? ?$(document).ready(function(){ ? ? ? ?$("#demoForm").validate({ ? ? ? ? ? ?debug:true, ? ? ? ? ? ?rules:{ ? ? ? ? ? ? ? ?username:{ ? ? ? ? ? ? ? ? ? ?required:true, ? ? ? ? ? ? ? ? ? ?//minlength:2, ? ? ? ? ? ? ? ? ? // maxlength:10, ? ? ? ? ? ? ? ? ? ?rangelength:[2,10], ? ? ? ? ? ? ? ? ? ?remote:{ ? ? ? ? ? ? ? ? ? ? ? ?url:"remote.json", ? ? ? ? ? ? ? ? ? ? ? ?type:"post", ? ? ? ? ? ? ? ? ? ? ? ?data:{ ? ? ? ? ? ? ? ? ? ? ? ? ? ?loginTime:function(){ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?return +new Date; ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?}, ? ? ? ? ? ? ? ?password:{ ? ? ? ? ? ? ? ? ? ?required:true, ? ? ? ? ? ? ? ? ? ?minlength:2, ? ? ? ? ? ? ? ? ? ?maxlength:16, ? ? ? ? ? ? ? ?}, ? ? ? ? ? ?}, ? ? ? ? ? ?message:{ ? ? ? ? ? ? ? ?username:{ ? ? ? ? ? ? ? ? ? ?required:"必須填寫用戶名", ? ? ? ? ? ? ? ? ? ?minlength:"必須填寫至少2位", ? ? ? ? ? ? ? ? ? ?maxlength:"必須填寫用戶名至少10位" ? ? ? ? ? ? ? ?}, ? ? ? ? ? ? ? ?password:{ ? ? ? ? ? ? ? ? ? ?required:"必須填寫密碼", ? ? ? ? ? ? ? ? ? ?minlength:2, ? ? ? ? ? ? ? ? ? ?maxlength:16, ? ? ? ? ? ? ? ?}, ? ? ? ? ? ?}, ? ? ? ?}); ? ?});</script>
舉報(bào)
validation讓客戶端表單驗(yàn)證變?nèi)菀?,縮短用戶等待時(shí)間
1 回答為什么寫的required校驗(yàn)規(guī)則沒有反應(yīng)
1 回答remote遠(yuǎn)程驗(yàn)證,chrome報(bào)錯(cuò)
2 回答這個(gè)表單驗(yàn)證有代碼嗎
1 回答一定要在控制臺寫代碼嗎?我在源代碼中寫的用不了啊
3 回答驗(yàn)證代碼中的username,password代表什么?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2016-08-05
<script>
? ?$(document).ready(function(){
? ? ? ?$("#demoForm").validate({
? ? ? ? ? ?debug:true,
? ? ? ? ? ?rules:{
? ? ? ? ? ? ? ?username:{
? ? ? ? ? ? ? ? ? ?required:true,
? ? ? ? ? ? ? ? ? ?//minlength:2,
? ? ? ? ? ? ? ? ? // maxlength:10,
? ? ? ? ? ? ? ? ? ?rangelength:[2,10],
? ? ? ? ? ? ? ? ? ?remote:{
? ? ? ? ? ? ? ? ? ? ? ?url:"remote.json",
? ? ? ? ? ? ? ? ? ? ? ?type:"post",
? ? ? ? ? ? ? ? ? ? ? ?data:{
? ? ? ? ? ? ? ? ? ? ? ? ? ?loginTime:function(){
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?return +new Date;
? ? ? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?},
? ? ? ? ? ? ? ?password:{
? ? ? ? ? ? ? ? ? ?required:true,
? ? ? ? ? ? ? ? ? ?minlength:2,
? ? ? ? ? ? ? ? ? ?maxlength:16,
? ? ? ? ? ? ? ?},
? ? ? ? ? ?},
? ? ? ? ? ?message:{
? ? ? ? ? ? ? ?username:{
? ? ? ? ? ? ? ? ? ?required:"必須填寫用戶名",
? ? ? ? ? ? ? ? ? ?minlength:"必須填寫至少2位",
? ? ? ? ? ? ? ? ? ?maxlength:"必須填寫用戶名至少10位"
? ? ? ? ? ? ? ?},
? ? ? ? ? ? ? ?password:{
? ? ? ? ? ? ? ? ? ?required:"必須填寫密碼",
? ? ? ? ? ? ? ? ? ?minlength:2,
? ? ? ? ? ? ? ? ? ?maxlength:16,
? ? ? ? ? ? ? ?},
? ? ? ? ? ?},
? ? ? ?});
? ?});
</script>