MVC 4 ビューに次の HTML フォームがあります
@using (Html.BeginForm("Index", "ManageAdministrator", FormMethod.Post,
new Dictionary<string, object> {{"id", "manageAdministratorForm"}}))
{
@Html.TextBox("emailAddressTextbox", null,
new Dictionary<string, object> {{"id", "emailAddressTextbox"}})
}
次のコードで JQuery 検証を適用したい
$(document).ready(function() {
$("#saveButton").click(function () {
$("#manageAdministratorForm").validate({
rules: {
emailAddressTextbox: {
required: true
}
},
comment: "The email address is required"
});
});
});
検証を実行すると、次のエラーが表示されます
JavaScript runtime error: Unable to get property 'call' of undefined or null reference