在prettyphoto中打开幻灯片图像

时间:2012-11-02 15:01:06

标签: prettyphoto

我想将rel属性添加到下面函数输出的链接中。它来自我试图自定义的幻灯片插件。我想要点击时在幻灯片中打开幻灯片/图像。插件的图像链接如下所示:a style =“”href =“”。我希望他们这样开始:一个rel = prettyPhoto [pics] style =“”href =“”....

有人可以帮帮我吗?

我想要这些图片:http://www.publicnewshub.com/volvo-v40-revealed/ 像这样打开:http://www.publicnewshub.com/jub-jub-co-accused-guilty/

loadEls: function () {
    function _(_, B) {
        var $ = new RegExp("\\[a((.*?)\\[\\/a\\]", "gi"),
            A = _.match($);
        $J.$A(A).j14(function (D) {
            if (B.textEffect == "fixed" && (new RegExp("href", "gi")).test(D)) {
                var A = D + "",
                    C = new RegExp('^.*?href=\\"([^\\"]+)\\".*$', "gi");
                href = D.replace(C, "$1");
                if ((new RegExp("onclick", "gi")).test(A)) {
                    C = new RegExp('onclick=\\"([^\\"]+)\\"', "gi");
                    A = A.replace(C, "onclick=\"$1;document.location.href='" + href + "';\"");
                    A = A.replace($, "<a $1>$2</a>");
                } else {
                    A = A.replace($, "<a $1 onclick=\"document.location.href='" + href + "';\">$2</a>");
                }
            } else {
                return A = D.replace($, "<a $1>$2</a>");
            }
            _ = _.split(D).join(A);
        });
        return _;

0 个答案:

没有答案