我想我遇到了一个“背景”问题,希望有人能对这个主题有更多的了解。
我想删除页面上所有图像的来源。我为每个图像构建了一个对象数组。当我隐藏源时,我希望实时显示更改而不影响我的原始对象属性。我想在点击事件上操纵图像(在屏幕上)。
例如:
$('#moz_iframe').contents().find("img").each(function(index){
aryImageObjects.push(new imageObject($(this), $('#iframeHolder')));
}); //end each
...
function imageObject(objImg, objHolder) {
this.objImg = objImg;
this.imgSrc = objImg.attr('src');
//this.objImg.replaceWith('hrm'); <-- this works just fine in this context
}; //end constructor
...但这不起作用:
$('#imagesOff').click(function(){
for (i=0; i<aryImageObjects.length; i++) {
aryImageObjects[i].objImg.replaceWith('hrm');
};
}); //end imagesOff click function
我还尝试在原始构造函数中构建对象方法:
this.hideImages = function() {
this.objImg.replaceWith('hrm');
};
...
$('#imagesOff').click(function(){
for (i=0; i<aryImageObjects.length; i++) {
aryImageObjects[i].hideImages();
};
}); //end imagesOff click function
但这似乎也不起作用。
任何帮助将不胜感激 :)