我有$( document ).ready(function() {
$('.list > li a').click(function(){
$(this).parent().children('ul').toggle();
});
});
条件。
if
如何在这里使用if object.fruit and object.fruit isnt 'mango'
?我尝试使用?
,但条件在if object.fruit? isnt 'mango'
为空对象时传递。
答案 0 :(得分:3)
您想要检查三件事:
object?
key of object
object.key isnt 'mango'
所有这些:
if object? and "fruit" of object and object.fruit isnt 'mango'
您可以在此演示中使用obj
的值:http://codepen.io/anon/pen/VLOMpm