单选全部选择触发全选:var arr=[],
_this=this;
this.productList.forEach(function(item,index){
if (item.checked) {
arr.push(index);
}
})
if (arr.length==this.productList.length) {
this.checkFig(true);
}else{
this.checkAll=false;
}
_this=this;
this.productList.forEach(function(item,index){
if (item.checked) {
arr.push(index);
}
})
if (arr.length==this.productList.length) {
this.checkFig(true);
}else{
this.checkAll=false;
}
2018-01-18
this.ShopCart.forEach(function(item, index) {
if(item.checked) {
_this.checkAllFlog = true;
} else {
_this.checkAllFlog = false;
}
})
这段代码貌似有BUG,点击最后一个单选会触发多选
if(item.checked) {
_this.checkAllFlog = true;
} else {
_this.checkAllFlog = false;
}
})
这段代码貌似有BUG,点击最后一个单选会触发多选
2018-01-18
做了一些总结与分析,里面有未开发的源码和已经完成的代码,求围观,求建议。地址:https://github.com/CruxF/Vue-base
2018-01-16
最新回答 / DosLT
window.onload = function(){ var json = {'list':[{'name':1},{'name':2},{'name':3},{'name':4}]}; var item = json.list[2]; var index = json.list.indexOf(item); console.log(index); json.list.splice(index,1); console.log(json.list...
2018-01-16