MVC C# modal popup

后端 未结 2 1011
被撕碎了的回忆
被撕碎了的回忆 2020-12-31 16:03

ok so i\'m trying to figure out how to properly call a modal popup for my page using Controllers as per this post\'s suggestion

ASP.NET MVC modal dialog/popup best p

2条回答
  •  滥情空心
    2020-12-31 16:10

    $('#CheckGtd').click(function () {
        if ($(this).is(":checked"))
            $("#tbValuationDate").attr("disabled", false);
        else
            $("#tbValuationDate").attr("disabled", "disabled");
    });
    

提交回复
热议问题