0

在原型中,我有这个运行良好的“if”语句:

if(parentForm.hasAttribute('action')){
 console.log('hello world')
}

但是,如何将其转换为“如果 parentForm 没有属性操作”语句?

非常感谢,阿迪。

4

1 回答 1

1

使用逻辑非运算符简单地否定条件;

if(!parentForm.hasAttribute('action')){
 console.log('hello world')
}
于 2012-07-18T08:58:15.453 回答