使用方形空间时,将标题网址更改为外部链接

时间:2011-06-03 13:25:02

标签: squarespace

我正在尝试使用squarespace将博客帖子的标题网址更改为外部链接?我相信这是可能的,但我不知道正确的代码。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

首先让我们为外部链接创建新的过滤器

$.extend($.expr[':'], {
    /**
     * Filter for External links
     *
     * @param element we'll need only DOM Element
     */
    external: function(element) {
        // is it link?
        if (element.tagName.toUpperCase() != 'A') return false;
        // is there href?..
        if (element.getAttribute('href')) {
            // cut off unnecessary
            if ((element.getAttribute('href').indexOf('/') === 0)   // internal link
                || (element.getAttribute('href').indexOf('#') === 0)  // hash
                || (element.getAttribute('href').indexOf(window.location.hostname) === 7) // http://...
                || (element.getAttribute('href').indexOf(window.location.hostname) === 8) // https://...
                    ) {
                return false;
            } else {
                // ya, we've found correct links
                return true;
            }
        } else {
            return false;
        }
    }
});

然后...

$function({
  /* All external links */
  $('a:external').each(function(i,e){
    e.attr('title', 'Your Title for External Link :) ');
  }); 
});