繁体   English   中英

仅当存在指定的样式时,才使用JavaScript验证字段-没有jQuery验证

[英]Validate field with JavaScript only if specified style is present - no jQuery Validate

我有一个表单,其中的字段仅在选中相应的单选按钮时才需要。 我插入的网站存在jQuery太多问题,因此我希望仅使用JavaScript进行验证-我无法使jQuery Validate插件正常工作。 我是JavaScript和jQuery的初学者。

取决于单选按钮,列表元素中包含使用jQuery show / hide的字段。 列表元素以内联“ display:none;”开头。 使用JavaScript,是否有一种方法可以仅在ID为ID的列表项的内联样式为“ display:block”时运行验证?

我从事此工作的时间已经太久了,而且发疯了。

这是我的HTML:

        <form name="pancettaForm" method="post" action="http://lizlantz.com/lcform.php" id="pancettaForm" onsubmit="return validateForm()">
                <input type="hidden" value="Pancetta Order Update" name="subject"> 
                <input type="hidden" value="cookware/partners_10151_-1_20002" name="redirect">
                <ul>
                    <li>
                    <label for="updateShip">I'd like to:</label> 
                        <input id="ship-address" name="updateShip" type="radio" value="update-ship-address" class="required"/> Have pancetta shipped to a different address than my skillet<br />
                        <input id="ship-date" name="updateShip" type="radio" value="update-ship-date" class="required" /> Have pancetta shipped sooner than June 14, 2013 <br />
                        <input id="ship-both" name="updateShip" type="radio" value="update-both"  class="required"/> Make changes to both the shipping address and shipping date
                    </li>
                    <li>                
                    <label for="order-number"><em>*</em>Order Number (available in order confirmation email):</label> 
                        <input type="text" name="order-number" class="required">
                    </li>             
                    <li>                
                    <label for="full-name"><em>*</em>Recipient Full Name:</label> 
                        <input type="text" name="full-name" class="required">
                    </li>   
                    <li id="address" style="display: none;">
                        <label for="address">
                            <em>*</em>Address
                        </label> 
                        <input type="text" name="address">
                        <label for="address2">
                            Address Line 2
                        </label> 
                        <input type="text" name="address2">
                    </li>
                    <li id="address2" style="display: none;">
                        <label for="city">
                            <em>*</em>City
                        </label> 
                        <input type="text" name="city">
                        <label for="state">
                            <em>*</em>State
                        </label> 
                        <select name="state">
                            <option>- Select State -</option>                            
                            <option value="AL">Alabama</option>
                            <option value="AK">Alaska</option>
                        </select>
                        <label for="zip">
                            <em>*</em>Zip Code
                        </label> 
                        <input type="text" name="zip">
                    </li>
                    <li id="new-ship-date" style="display: none;">
                        <label for="New Ship Date"><em>*</em>New Ship Date (Saturday-Tuesday delivery not available):</label>                 
                        <select name="newShip" id="newShip">
                            <option>- Select -</option>
                            <option value="Wednesday, May 22">Wednesday, May 22</option>
                            <option value="Thursday, May 23">Thursday, May 23</option>
                        </select>                            
                    </li>                       
                    <li>
                        <label for="phone">
                            <em>*</em>Phone (for delivery questions)
                        </label> 
                        <input type="text" name="phone" class="required">
                    </li>               
                </ul>
                       <input type="submit" id="button" name="submit"  value="Update Pancetta">

              </form>

这是我正在使用的jQuery:

            $j(document).ready(function() {
                $j('#pancettaForm').change(function () {
                           $j('#address,#address2,#new-ship-date').hide();
                           if ($j('#ship-address').prop('checked')) {
                              $j('#address, #address2').show();
                           }
                           else if ($j('#ship-date').prop('checked')) {
                              $j('#new-ship-date').show();
                           }
                           else if ($j('#ship-both').prop('checked')) {
                              $j('#address, #address2, #new-ship-date').show();
                           }
                        });

            });

到目前为止,这是我的验证脚本的一般结构:

            function validateForm()
            {
                var x=document.forms["pancettaForm"]["order-number"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your order number.");
                  return false;
                  }
                var x=document.forms["pancettaForm"]["full-name"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your full name.");
                  return false;
                  }

                var x=document.forms["pancettaForm"]["Address1"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your address.");
                  return false;
                  }
                var x=document.forms["pancettaForm"]["city"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your city.");
                  return false;
                  }

               if( document.pancettaForm.state.value == "- Select State -" )
               {
                 alert( "Please provide your state." );
                 return false;
               }
                var x=document.forms["pancettaForm"]["zip"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your zip code.");
                  return false;
                  }  


                var x=document.forms["pancettaForm"]["Zip_Code"].value;
                if (x==null || x=="")
                  {
                  alert("Please provide your zip code.");
                  return false;
                  } 

                  if( document.pancettaForm.newShip.value == "- Select Date -" )
               {
                 alert( "Please select the size of the product you would like to register.  " );
                 return false;
               }


            }

你可以这样使用

var display= document.getElementById('someID').style.display;

if(display=='block')
 {
   //do validation here.
 }

一个小提琴的例子

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM