MVC アプリケーションを開発しています。チェックボックスと送信ボタンがあります。
チェックボックスのチェックされたイベントで送信ボタンを有効にしたいのですが、チェックされていない送信ボタンでは無効にする必要があります。
これを行う方法 ?
以下のコードがあります....
@model PaymentAdviceEntity.Account
@using PaymentAdviceEntity;
@{
ViewBag.Title = "Create";
PaymentAdvice oPA = new PaymentAdvice();
oPA = (PaymentAdvice)ViewBag.PaymentAdviceObject;
<div>
<input type="checkbox" class="optionChk" value="1" /> Paid
</div>
<input type="submit" value="Create" />
<input type="button" class="btn-primary" />
}
<script type="text/javascript">
$(".optionChk").on("change", function () {
if ($(this).is(":checked"))
{
alert("1");
$(".SubmitButton").attr("disabled", "disabled");
} else
{
alert("2");
$(".SubmitButton").attr("enable", "enable");
}
});
</script>