在进行 ajax 调用 .loadUrl() 之后,我需要隐藏一个 div (this.elmWheel)。
使用此代码我无法隐藏 div。我在这里做错了什么?我正在使用 jquery 1.4.2
var Viewer = function(url) {
var scope = this;
this.elm = '#viewer';
this.elmWheel = '#loader-wheel';
this.url = url;
this.init = function() {
this.loadWheelInit();
this.loadUrl();
};
this.loadWheelInit = function() {
$('<div id="' + scope.elmWheel + '">Loading ...</div>').appendTo(this.elm);
};
this.loadWheelHide = function() {
$(this.elmWheel).hide();
console.log('hide');
};
this.loadUrl = function() {
// simulate loading
setTimeout(function() {
// fetch img from api
$.get(this.url, function(data) {
scope.loadWheelHide();
console.log('show image');
// add img to the dom
var img = $('<img id="img">');
img.attr('src', this.url);
img.appendTo(scope.elm);
});
}, 2000);
};
};
<div id="viewer" class="">
</div>
我正在使用此代码创建一个实例,正确附加了一个 Loadind 轮,只是无法隐藏它
var viewer = new Viewer('img/1.jpg');
viewer.init();