我正在开发 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>