我希望能够做到这一点:
var b = $(this).is(':checked')
$('.perspective-col'). (b) ? show() : hide()
代替
var b = $(this).is(':checked')
if(b) {
$('.perspective-col').show()
} else {
$('.perspective-col').hide()
}
我是不是想要的太多了?还是有一些我还没有找到的美妙的 javascript 语法?还是我认为到目前为止 JQuery 中不存在这样的事情是正确的?(我使用的是 JQuery 1.9.0)