- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Javascript 和 jQuery 创建一个画廊类。
我有一些用于该画廊类的原型(prototype)函数,但是当我尝试在类中访问这些函数时,它显示错误。
Uncaught TypeError: Gallery.start is not a function
My JSfiddle Link
这是我的 Javascript:
/**
*
* @param options should be object of following
* options.images Array of gallery images URL
* options.start slide starting point
* options.autoPlay This option will be false by default
*
*/
function Gallery(options) {
var _this = this;
var galleryOptions = options;
function randomString(len, charSet) {
var ranString = '';
var randomPoz;
charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (var i = 0; i < len; i++) {
randomPoz = Math.floor(Math.random() * charSet.length);
ranString = ranString + charSet.substring(randomPoz, randomPoz + 1);
}
return ranString;
}
function addThumbnail(imgSrc) {
return '<li class="thumbnail__list"><img src="' + imgSrc + '" class="thumbnail__list-img" /></li>';
}
function renderThumbnail(imgArr) {
var html = [];
if (imgArr) {
$.each(imgArr, function(i, v) {
html.push(addThumbnail(v));
});
}
return '<ul class="gallery__thumbnail__container">' + html.join('') + '</ul>';
}
function getPlaceholder() {
return 'dummy.jpg';
}
function disableNext(thisObj) {
thisObj.galleryElement.find('.next').addClass('disabled');
}
function disablePrev(thisObj) {
thisObj.galleryElement.find('.prev').addClass('disabled');
}
function enableNext(thisObj) {
thisObj.galleryElement.find('.next').removeClass('disabled');
}
function enablePrev(thisObj) {
thisObj.galleryElement.find('.prev').removeClass('disabled');
}
function togglePrevNext(self) {
if (self._opt.currIndex === (self._opt.imagesLength)) {
disableNext(self);
} else {
enableNext(self);
}
if ((self._opt.currIndex - 1) === 0) {
disablePrev(self);
} else {
enablePrev(self);
}
}
function controls() {
var html = [];
html.push('<div class="prev sz-icon-arrow-left"></div>');
html.push('<div class="next sz-icon-arrow-right"></div>');
return '<div class="gallery__controls">' + html.join('') + '</div>';
}
function bindClickEvents(galleryElement) {
galleryElement.on('click', '.start', function() {
_this.start();
});
galleryElement.find('.stop').on('click', function() {
_this.stop();
});
galleryElement.find('.prev').on('click', function() {
_this.prev();
});
galleryElement.find('.next').on('click', function() {
_this.next();
});
galleryElement.find('.thumbnail__list').on('click', function() {
_this.goTo(Number($(this).index()) + 1);
});
}
function checkOptions(option) {
var opt = option;
opt.images = (opt.images.length) ? opt.images : getPlaceholder();
opt.thumbnail = (opt.thumbnail) ? true : false;
opt.fullScreen = (opt.fullScreen) ? true : false;
opt.container = (opt.fullScreen) ? 'body' : opt.container;
opt.container = (opt.container) ? opt.container : 'body';
opt.autoPlay = (opt.autoPlay) ? true : false;
opt.start = (opt.start && opt.start <= Number(opt.images.length)) ? opt.start : 1;
return opt;
}
Gallery.init = function() {
var html;
_this._opt = checkOptions(galleryOptions);
_this._opt.imagesLength = Number(_this._opt.images.length);
_this._opt.currIndex = Number(_this._opt.start);
_this._opt.elementName = 'gallery--' + randomString(5, 'SZgallery');
if (_this._opt.fullScreen) {
html = '<div class="pop-up__model ' + _this._opt.elementName + '">' +
'<div class="pop-up__model-table">' +
'<div class="pop-up__model-cell">' +
'<div class="gallery"><div class="pop-up__model-content">' +
'<div class="gallery__inner-wrapper"></div>' +
'</div></div>' +
'</div></div>' +
'</div>';
$(_this._opt.container).append('', html);
if (_this._opt.thumbnail) {
$('.pop-up__model-content').append('', '<div class="thumbnail__list-wrapper">' + renderThumbnail(options.images) + '</div>').append('', controls());
}
} else {
$(_this._opt.container).append('', '<div class="gallery gallery--hidden ' + _this._opt.elementName + '"></div>');
}
_this.galleryElement = $('.' + _this._opt.elementName);
if (_this._opt.fullScreen) {
_this.galleryElement.find('.gallery__inner-wrapper').append('', '<div class="gallery__img-holder">' +
'<img class="gallery__img-preview" src="' + _this._opt.images[_this._opt.start - 1] + '"/>' +
'</div>');
} else {
_this.galleryElement.append('', '<div class="gallery__img-holder">' +
'<img class="gallery__img-preview" src="' + _this._opt.images[_this._opt.start - 1] + '"/>' +
'</div>');
}
if (_this._opt.thumbnail) {
_this.galleryElement.append('', renderThumbnail(options.images)).append(controls());
} else {
_this.galleryElement.append('', controls());
}
if (_this._opt.autoPlay) {
Gallery.start();
}
bindClickEvents(_this.galleryElement);
};
Gallery.prototype = {
start: function() {
_this.goTo(_this._opt.currIndex);
_this.galleryElement.removeClass('gallery--hidden');
console.log('started', _this._opt);
if (_this._opt.fullScreen) {
$('.pop-up__model').addClass('is_visible');
}
},
stop: function() {
_this.galleryElement.addClass('gallery--hidden');
},
next: function() {
if (_this._opt.currIndex <= (_this._opt.imagesLength - 1)) {
_this._opt.currIndex++;
_this.goTo(_this._opt.currIndex);
}
},
prev: function() {
if ((_this._opt.currIndex - 1) !== 0) {
_this._opt.currIndex--;
_this.goTo(_this._opt.currIndex);
}
},
goTo: function(imgNo) {
var thumbnail;
_this._opt.currIndex = Number(imgNo);
if (_this._opt.images[imgNo - 1]) {
_this.galleryElement.find('.gallery__img-preview').attr('src', _this._opt.images[imgNo - 1]);
}
if (_this._opt.thumbnail) {
thumbnail = _this.galleryElement.find('.thumbnail__list');
thumbnail.removeClass('active');
thumbnail.eq(imgNo - 1).addClass('active');
}
togglePrevNext(_this);
},
destroy: function() {
console.log('destroyed');
}
};
return Gallery;
}
var imgArr = ['images/placeholder-1.png', 'images/placeholder-2.png', 'images/placeholder-3.jpg', 'images/placeholder-4.jpg'];
var hotelPhotosGallery = new Gallery({
images: imgArr,
autoPlay: true,
container: '.photo-list'
});
hotelPhotosGallery.init();
最佳答案
看了你的代码后,我发现了问题:
if (_this._opt.autoPlay) {
Gallery.start(); // This method doesn't exist on a non instantiated object
}
您正在尝试调用函数本身的方法,而不是该函数实例原型(prototype)的方法(使用 new
实例化)。
但是,原型(prototype)方法在非实例化项上不可用,因为函数中的 this
默认附加到全局对象。使用 new
时,this
实际上变成了一个新对象,并从 function
中隐式返回,从而创建了一个新实例。 More about using function constructors
通常,这可以通过使用上下文(即 this
)而不是函数名来解决:
if (_this._opt.autoPlay) {
this.start(); // Use the context of the instantiated Gallery
}
然而,在您的特定情况下,您正在重新定义原型(prototype):
Gallery.prototype = { ... } // You are overwriting the prototype object
而不是使用 JS 引擎已经为您准备好的并在其上添加方法:
// add methods directly on the prototype
Gallery.prototype.method1 = // ...
Gallery.prototype.method2 = // ...
这条路是potentially unsafe因为在您重新定义它之前,它最终会删除原型(prototype)中存在的任何其他内容。
如果您不关心这一点并希望保持代码原样,您也可以通过显式调用原型(prototype)来访问您的方法:
if (_this._opt.autoPlay) {
Gallery.prototype.start(); // Explicitly call the prototype, since you already defined it
}
关于javascript - 在函数内部调用原型(prototype)方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34625874/
以下代码,我使用 chrome 浏览器控制台进行了检查: function A(){ this.a='a' } 这是一个构造函数。我已经将一个属性 b 赋给了 A 的原型(prototype)。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 5年前关闭。 Improve this
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 3年前关闭。 Improve this
我已经开始阅读 The Pragmatic Programmer,我很喜欢并学习堆形式,但我很难理解示踪子弹和原型(prototype)之间的区别。跟踪项目符号是否像拥有应用程序的所有 View 但尚
尽管阅读了 StackOverflow 上的大多数文章,但我现在实际上对原型(prototype)非常困惑。 function Foo() { } Foo.prototype.speak = func
我正在阅读以下代码,并开始想知道 Rectangle.prototype = Object.create(Shape.prototype) 和 Rectangle.prototype = Shape.
我想知道它们之间的区别: childObj.prototype = Object.create(parentObj.prototype) 和 childObj.prototype = parentOb
这个问题在这里已经有了答案: Why wouldn't I use Child.prototype = Parent.Prototype rather than Child.prototype =
在 node.js 中导出原型(prototype)的首选方法是什么?您可以采用两种方法: 导出原型(prototype)本身 function A () { } module.exports = A
我正在学习 JavaScript,发现了两种分配原型(prototype)的方法。 第一个是A.prototype = B.prototype,第二个是A.prototype = new B() 例如
在一些构造函数的定义之后,例如 child ,我见过以下两种形式: Child.prototype = Parent.prototype; 或 Child.prototype = new Parent
我正在阅读一本关于 OOP javascript 的书,但被其中一个示例卡住了。 在示例代码的第一个版本中,Shape 的一个新实例构造函数被创建并且 toString方法被调用。 toString方
这个问题在这里已经有了答案: What should I connect to the child prototype property in JavaScript (2 个答案) 关闭 8 年前。
在进行原型(prototype)设计时,您在多大程度上放弃了最佳实践来支持代码和修复黑客攻击?当然,代码并不打算在完整的生产环境中保留。 补充:我正在研究一个用 Python 制作的相当大的半工作原型
我正在尝试使用 Prototype 更新隐藏表单字段的值。表单域: 我正在尝试使用原型(prototype)更新值: var additionalVal = ',2'; var itemId = $
我正在阅读How to Make a Javascript Library我发现了作者所说的一个观点: function _() { //Some obects and var
我想用一个新函数扩展“Number”类型,因此我必须定义一个原型(prototype)。当我想到这一点时,我得到了一堆问题: Number 是否既继承了 Object.prototype 又继承了 F
这里好像有区别... 假设我们有 function MyConstructor() {} MyConstructor 的[[Prototype]] 是Function.prototype,不是 MyC
有人建议 Derived.prototype = Object.create(Base.prototype); 优于 Derived.prototype = new Base(); (如 this S
我是一名优秀的程序员,十分优秀!