我的代码就像
var shapes1 = [ r.image("node.gif",190, 100, 47, 45)];
var shapes2 =[];
for (var i = 0, ii = shapes1.length; i < ii; i++) {
shapes1[i].mousedown(function(e){
var temp=this.clone();
shapes1.push(temp);
//now I want to remove "this" from shapes1
//and put it into shape2
//HOW??
isDrag=true;
e.preventDefault();
});
}
这可能是错误的做法吗?我应该使用类,但不是DOM项目吗?
答案 0 :(得分:3)
我发现像
这样的东西很方便function removeIf(arr, predicate) {
for (var i = 0; i < arr.length; i++) {
if (predicate(arr[i])) {
arr.splice(i--, 1);
}
}
}
那么:
var shapes1 = [ r.image("node.gif",190, 100, 47, 45)];
var shapes2 =[];
for (var i = 0, ii = shapes1.length; i < ii; i++) {
shapes1[i].mousedown(function(e){
var temp=this.clone();
shapes1.push(temp);
removeIf(shapes1, function (item) { return item === this; });
shapes2.push(this);
isDrag=true;
e.preventDefault();
});
}
答案 1 :(得分:1)
使用splice(index,range)从数组中删除项目。