如果条件在 jQuery 中为真,如何隐藏 div 1 并显示 div 2?
这是我的代码:
<div class="div1">Content 1 </div>
<div class="div2">Content 2 </div>
function(someFunction) {
var option = this.config.option;
if (someFunction && this.config.option == true) {
option = this.config.option;
}
$$('div.div1').each(function(el) {
$(el).hide(); //and add show div2 ?
});
};
任何帮助表示赞赏。