简体   繁体   中英

validate the star rating using jquery validation engine master

I need to Validate star rating using jquery validation engine master. I Have tried that But It doesn't seem to work. Can any one please help me on this??

 <input class="star required" type="radio" name="test-1-rating-4" value="1" title="Worst"/>
    <input class="star" type="radio" name="test-1-rating-4" value="2" title="Bad"/>
    <input class="star" type="radio" name="test-1-rating-4" value="3" title="OK"/>
    <input class="star" type="radio" name="test-1-rating-4" value="4" title="Good"/>
    <input class="star" type="radio" name="test-1-rating-4" value="5" title="Best"/> 

jQuery(document).ready(function(){
            // binds form submission and fields to the validation engine
            jQuery("#formID").validationEngine();


        });

I hope this will workout, just check you code in form and its form id should be "formID"

<input class="star validate[required,] " type="radio" name="test-1-rating-4" value="1" title="Worst"/>
<input class="star validate[required,] " type="radio" name="test-1-rating-4" value="2" title="Bad"/>
<input class="star validate[required,]" type="radio" name="test-1-rating-4" value="3" title="OK"/>
<input class="star validate[required,] " type="radio" name="test-1-rating-4" value="4" title="Good"/>
<input class="star validate[required,] " type="radio" name="test-1-rating-4" value="5" title="Best"/> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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