📅  最后修改于: 2022-03-11 14:59:29.287000             🧑  作者: Mango
$("[name=Country]").on("change",function(){
if($(this).val()=="United States"){
var self =this
setTimeout(function(){
$(self).closest("form").find("[name=state]").prop("required",true)
},500)
}
});