在原型中,我有这个运行良好的“if”语句:
if(parentForm.hasAttribute('action')){
console.log('hello world')
}
但是,如何将其转换为“如果 parentForm 没有属性操作”语句?
非常感谢,阿迪。
在原型中,我有这个运行良好的“if”语句:
if(parentForm.hasAttribute('action')){
console.log('hello world')
}
但是,如何将其转换为“如果 parentForm 没有属性操作”语句?
非常感谢,阿迪。
使用逻辑非运算符简单地否定条件;
if(!parentForm.hasAttribute('action')){
console.log('hello world')
}