0
これらのif条件を使用せずにフォーム検証を行いたい場合、if-else条件を単独で使用したいですか?あなたの例に基づいて複数のelse ifステートメントをリファクタリングする方法
if($("#firstname").val() == "") {
$('#dateofbirth').html("Please enter date of birth.");
}
else
{
$('#dateofbirth').empty();
}
if($("#lastname").val() == "") {
$('#employeetypeid').html("Please select employee type.");
}
else
{
$('#employeetypeid').empty();
}
if($("#username").val() == "") {
$('#worklocationid').html("Please select work location.");
}
else
{
$('#worklocationid').empty();
}
if($("#passwordConfirmation").val() == "") {
$('#departmentid').html("Please select organization/dept.");
}
else
{
$('#passwordConfirmation').empty();
}`
でコードをsubstitue https://stackoverflow.com/questions/18269286/shorthand-for-if-else-statement –
マイrecomendationはhttps://jqueryvalidation.org/を使用しており、各入力に「必須」パラメータを追加するだけです –