-2

当您单击图像时,我正在使用灯箱 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
4

1 回答 1

0

您可能只需要一些 HTML。做一个这样的链接

Inquire about <a href=\"http://my-link.com\">there</a> items

这可能会奏效。

于 2013-09-14T15:26:14.353 回答