我正在使用灯箱jquery脚本在您单击图像时显示一些文本。我对jquery很新,所以我会盲目地去 - 但我已经设法找到我要编辑的文本部分,只是我想在该空间中添加一个链接但是我很难将它合并到一起。
我想添加我写的“查询这些项目”的链接。任何帮助将不胜感激。谢谢!
(function () {
var b, d, c;
b = jQuery;
c = (function () {
function b() {
this.fadeDuration = 200;
this.fitImagesInViewport = true;
this.resizeDuration = 700;
this.showImageNumberLabel = true;
this.wrapAround = false
}
b.prototype.albumLabel = function (b, c) {
return "Inquire about these items "
};
return b
})();
d = (function () {
function c(b) {
this.options = b;
this.album = [];
this.currentImageIndex = void 0;
this.init()
}
c.prototype.init = function () {
this.enable();
return this.build
答案 0 :(得分:0)
您可能只需要一些HTML。建立一个像这样的链接
Inquire about <a href=\"http://my-link.com\">there</a> items
这可能有用。