Skip to content

Instantly share code, notes, and snippets.

@momota10
Last active August 11, 2021 02:23
Show Gist options
  • Save momota10/e41bf7ab5d902c7b46a6 to your computer and use it in GitHub Desktop.
Save momota10/e41bf7ab5d902c7b46a6 to your computer and use it in GitHub Desktop.
jQuery 送信ボタンを押したときに要素が選択されているのかをcheckする。
$(document).on("submit", ".js-admin-edit-form", function(event) {
//ifに引っかかったときの処理
if( $("#hoge-form").val("abc") ){
if($("#category").val() === "" || $("#genre").val() === "") {
alert("カテゴリやジャンルが選択されていません");
return false;
}
}
//ifに引っ掛からなかったときの処理
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment