Last active
August 11, 2021 02:23
-
-
Save momota10/e41bf7ab5d902c7b46a6 to your computer and use it in GitHub Desktop.
jQuery 送信ボタンを押したときに要素が選択されているのかをcheckする。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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