标签: javascript prototypejs
在原型中我有这个'if'语句可以正常工作:
if(parentForm.hasAttribute('action')){ console.log('hello world') }
但是,如何将其转换为“如果parentForm没有属性操作”声明?
非常感谢, 阿迪。
答案 0 :(得分:1)
使用logical not operator;
if(!parentForm.hasAttribute('action')){ console.log('hello world') }