JQuery Validate Dropdown list

前端 未结 7 1812
后悔当初
后悔当初 2020-12-05 13:56

I\'m using the validation plugin from here. I\'m trying force the user to select an option in the drop down list so here\'s my html for the list:

Select the          


        
7条回答
  •  有刺的猬
    2020-12-05 14:03

    $(document).ready(function(){
    $("#HoursEntry").change(function(){
    var HoursEntry = $(#HoursEntry option:selected).val();
    if(HoursEntry == "")
    {
    $("#HoursEntry").html("Please select");
    return false;
    }
    });
    });
    

提交回复
热议问题