1
驗證只在jQuery驗證插件必填字段:下面是我的代碼如何只驗證jQuery驗證插件中的必填字段?
<label for="firstName">First Name<span class="required">*</span></label>
<input type="text" id="firstName" class="form-control" placeholder="First Name" name="firstName">
<label for="address1">Address Line 1</label>
<input type="text" id="address1" class="form-control" placeholder="Address Line 1" name="address1">
我想在表單跳過地址1提交
你可以顯示你的jQuery代碼嗎? 。 –
$( '#profileDetailsPage')驗證({ \t \t \t \t \t \t \t \t \t規則:{ \t \t \t \t \t姓:{要求:真實,純文字:真}, \t \t \t \t \t address1:{required:true,textonly:true} \t \t \t \t \t \t \t \t \t}, \t \t \t \t消息:{ \t \t \t \t \t姓: 「請輸入您的名字」, \t \t \t \t \t地址1: 「請只輸入文字」 \t \t \t \t }, \t \t \t \t submitHandler:function(){} \t \t \t \t}); – Pandu