javascript(prototype)如果element没有属性

时间:2012-07-18 08:57:23

标签: javascript prototypejs

在原型中我有这个'if'语句可以正常工作:

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

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

非常感谢, 阿迪。

1 个答案:

答案 0 :(得分:1)

使用logical not operator;

简单地否定条件
if(!parentForm.hasAttribute('action')){
 console.log('hello world')
}