开发者

Jquery problem:validation code not working

i'm using jquery in report section in my asp.net mvc project.But i had problem with jquery validation.Here code don't work and doesn't show any message when the date input text field is left blank.

$(document).ready(function() {
        $("#FromDate").datepicker({ showOn: 'both', buttonText: "select Date", dateFormat: 'M d, yy' });
        $("#ToDate").datepicker({ showOn: 'both', buttonText: "select Date", dateFormat: 'M d, yy' });
        $("#ParticularDate").datepicker({ showOn: 'both', buttonText: "select Date", dateFormat: 'M d, yy' });

        $("#ddlRepoOpt").change(function() {
            var self = $(this);
            开发者_JAVA百科$("#repoopt").show();
            if (self.val() == "") {
                $("#reop2").hide();
                $("#reop1").hide();
                $("#reop3").hide();
                $("#optionUttOperators").hide();
                $("#optionUttTravelAgents").hide();
            }
            else if (self.val() == 1) {
                $("#reop2").show();
                $("#reop1").hide();
                $("#reop3").hide();
                $("#optionUttOperators").show();
                $("#optionUttTravelAgents").show();
            }
            else if (self.val() == 2) {
                $("#reop1").show();
                $("#reop2").hide();
                $("#reop3").hide();
                $("#optionUttOperators").show();
                $("#optionUttTravelAgents").show();
            }
            else {
                $("#reop1").hide();
                $("#reop2").hide();
                $("#reop3").show();
                $("#optionUttOperators").show();
                $("#optionUttTravelAgents").show();

            }
            $("#generateReport").show();
        });

        **$("#generateReport").live("click", function(e) {
                var sd = $("#FromDate").val();
                var ed = $("#ToDate").val();
                var pd = $("ParticularDate").val();
            if (sd == "" && ed == "" && pd=="") {
                alert("Please select the dates");
                e.preventDefault();
                return false;
            }
        });

    });

i had problem with following part.here no alert message is dispaly when textbox field is left empty.

   $("#generateReport").live("click", function(e) {

                var sd = $("#FromDate").val();
                var ed = $("#ToDate").val();
                var pd = $("ParticularDate").val();
            if (sd == "" && ed == "" && pd=="") {
                alert("Please select the dates");
                e.preventDefault();
                return false;
            }
        });


Try this instead:

   $("#generateReport").live("click", function(e) {
        var sd = $("#FromDate").val();
        var ed = $("#ToDate").val();
        var pd = $("#ParticularDate").val();
        if ((sd == null || sd.length < 1) && (ed == null || ed.length < 1) && (pd == null || pd.length < 1)) {
            alert("Please select the dates");
            e.preventDefault();
            return false;
        }
    });
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜