var btnlist="";
$("#divPopup").on("click", "li", function () {
var $this = $(this);
// get currect id an replace with right
var newId = $this.attr('Id').replace("Left", "Right")
// check if the image is not for True
if ($('#' + newId).find('img').attr('class') != 'checkImage') {
$this.toggleClass("selected");
if ($this.attr('class') == "selected") {
btnlist.
$('#' + newId).show(); // <== i want to store Newid each time when.show() method ex
}
else {
var newId = $this.attr('Id').replace("Left", "Right")
$('#' + newId).hide();
}
}
});
我想存储 btnlist。$('#' + newId).show();
<== 我想在每次执行.show() 方法时存储Newid,我该如何存储它。?
例如,有 10 li 元素都被隐藏了!,现在让我们看看我点击 5 li 元素,然后将它们显示出来!
如何创建可见项目列表?像这样的 var visiable = ([li1, li2, li3,li4,li5]); 我需要增加哪行代码才能实现这样的目标