2012-11-24 22 views
0

这是我的表单和jQuery验证代码。问题是:它验证前两个字段,即标题和desc,但它不会从品种字段验证。Jquery验证不适用于某些文本框

<div class='span10 well' style='display:block;'> 
    <h4>Listing Details : <span class='btn btn-info btn- small' style='display:inline;'>Public</span><a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">The information entered here will only shown to all customers who view your profile!</span><span class="bottom"></span></span></a></h4><br> 
    <div class='test span9 well'> 
    <form name='listingForm' id='listingForm' action='processListing.php' method='POST' onsubmit='validateForm()'> 
      <label for "title"> Title: </label> 
        <input class='span8' type='text' name='title' id='title' placeholder='Catchy one-liner title...'> 
        <!-- help message --> 
        <a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">A title is your first impression key! Make it catchy but informative to attract more customers.</span><span class="bottom"></span></span></a> 
      <br><br><label for "desc"> Description: </label> 
        <textarea id="desc" name="desc" class='span8' rows=5 placeholder='Detailed description about your listing...'></textarea> 
        <a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">A detailed description about your listing helps prospective customers know more about you. Talk about your pet, your family, how much you love your pet or an overview about how you can take the best possible care of the customer's four-feeted friend!</span><span class="bottom"></span></span></a> 
    </div> 
    <div class='myspan well'> 
    <label for "breeds"> Breeds: <a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">Key in all the breeds that you are willing to host. The more the merrier, so select as many as you want!</span><span class="bottom"></span></span></a></label> 
      <input type='text' name='breeds' id='breeds' value='' placeholder='Breeds you are willing to take in' onfocus='getDynamicData("Breed",this)'> 

    <br><br><label for "boardingtype"> Accomodation Type: 
    <a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">The type of accomodation that you can provide for the customer's best friend!</span><span class="bottom"></span></span></a> 
    </label> 

      <input type='radio' name='boardingtype' id='Apartment'> Apartment 
      <input type='radio' name='boardingtype' id='House'> House 
      <input type='radio' name='boardingtype' id='Boarding'> Boarding 
    <br><br> 
    <label for "amenities"> Amenities: 
    <a href="#" class="tt"><img src='../../img/help.png' class='helpicon' /><span class="tooltip"><span class="top"></span><span class="middle">Amenities available for a customer's pet. Choose all that apply. If you have more, be sure to mention it in the description of your listing.</span><span class="bottom"></span></span></a> 
    </label> 
      <input type='checkbox' id='amenity1' name="amenity1" value='Y'> <span style='padding-left: 10px'>Proximity to Vet</span> 
      <br><input type='checkbox' id='amenity2' name="amenity2" value='Y'> <span style='padding-left: 10px'>Play Area</span> 
      <br><input type='checkbox' id='amenity3' name="amenity3" value='Y'> <span style='padding-left: 10px'>24x7 Caretaker</span> 
      <br><input type='checkbox' id='amenity4' name="amenity4" value='Y'> <span style='padding-left: 10px'>Toys</span> 
    </div> 

这里是我的jQuery验证:

$(document).ready(function(){ 
    $("#listingForm").validate({ 
      rules: { 
       title: "required", 
       desc: "required", 
       breeds: "required", 
       price: { 
        required: true, 
        }, 

      }, 
      messages: { 
       title: "blah blah", 
       desc: "blah blah", 
       breeds: "blah blah", 

       price:"blah blah" 
      } 
     }); 

    }); 
+0

您的验证规则中出现语法错误。删除“price:{required:true,},”结尾处的逗号 – ffffff01

回答

1

的问题是,其余字段不是形式的一部分。表单和div必须正确嵌套。您有:

<div class='test span9 well'> 

表格开始之前。与此匹配的</div>也隐含地结束了该表格。如果您想将表单拆分成多个部门,则需要将中的<div>标签。

您也错过了span9分部的收盘</form></div>