答案 0 :(得分:0)
您需要给select
一个change
处理函数,并且还要为firstName
使用正确的选择器(将#
放在前面以选择{{1 }}):
id
$("#paymentType").on('change', function() {
const paymentType = this.value;
if (paymentType == 'pizza') {
$("#firstName").prop('required', true);
} else {
$("#firstName").prop('required', false);
}
});