我正在尝试测试验证条件,this.postalCode == '' || this.countryName === '' || this.floorRoom == '' || this.newCustomerName == '' || this.streetAddress == '' || this.cityTown == '' || this.province == ''
我还有country_other
和province_other
country_other
和province_other
只能在countryName
作为Other
提供且省隐藏时存在,默认情况下,它们被声明,因此不会以未定义结束。
我需要修改wat conditions以检查是否在国家中选择了其他,填写并验证country_other和province_other,在其他情况下,如果国家选择为加拿大,则country_other和province可以为空,因为province加载下拉菜单以选择省份
我尝试的代码是以上
1条答案
按热度按时间t3psigkw1#
这将检查
countryName
是否为“其他”,如果是,它将检查country_other
和province_other
字段是否不为空。如果国家不是“其他”,它将检查province
字段是否不为空。这样,当用户选择“其他”作为countryName
时,您确保填写country_other
和province_other
字段,并且在这种情况下不需要省份字段,并且如果countryName
不是“其他”,则需要省字段。