模塊化的方式是否有模塊化的方式來使用jQuery選擇的方式:使用jQuery選擇
var logo = $('.logo', function() {
function show() {
console.log('logo has appeared');
$(this).addClass('logo-animated');
};
function hide() {
console.log('logo has been removed');
};
});
我希望能夠在它選擇分配給變量,並且有一定的功能,我可以能夠訪問從外面看它的範圍。
通知,這是僞代碼,我只是給你一張我如何看它的圖片。
var selector = $('.someclass',
# here goes functions that I could access from outside;
);
UPDATE
var parallax = function() {
var images = ["http://localhost:8000/static/assets/images/hero-image-welcome.jpeg"];
var selector = $('.parallax-module');
var reload = function() {
console.log('reload')
};
$(selector).each(function(index) {
var image = {};
image.element = $(this);
image.height = image.element.height();
images.push(image);
$(this).css('background-image', 'url(' + images[index] + ')');
});
return {
images: images,
reload: reload()
}
}();
parallax.reload;
console.log(parallax.images[0])
// This goes without error, but isn't right;
var sParallax = $('.parallax-module');
sParallax.addClass('someClass');
// This would cause error;
parallax.addClass('someClass');
在這種情況下,我可以使用視差公共屬性和方法,但沒有創造一個新的,我不能使用選擇器(如我在開始時所做的那樣)鏈接到它。我知道我可以使用公共屬性來訪問選擇器,但這不是我尋找的方式。
謝謝,但我知道。問題是關於模塊化的方式來做到這一點。 – Katherine
這是你在尋找什麼? http://jsfiddle.net/kjt3yunz/3/ – Rafa
一般來說,是的,我也是這樣做的,但是如何通過$(logo)或變量'logo'本身訪問選擇器。 – Katherine