如何在javascript中建立链接

时间:2016-04-04 03:18:05

标签: javascript jquery

我想显示点击此处查看javascript中的文章。

$('.rrssb-buttons').rrssb({
    // required:
    title: '{{post.title}}',
    url: window.location.href,

    // optional:
    description: '{{post.content.strip|safe}}',
    emailBody: window.location.href 
  });

所以以上是我的代码,并且在emailBody中它当前显示正确的url。 我希望这个网址在标签中。在屏幕上播放,点击此处查看文章。我如何实现这一目标?

1 个答案:

答案 0 :(得分:2)

假设我正确地解释了您的问题,您希望电子邮件地址的内容显示该文章的链接。例如,

  

Click here查看该文章。

如果电子邮件未被视为纯文本,则可以在电子邮件中正确显示HTML元素的简单连接。

$('.rrssb-buttons').rrssb({
    // required:
    title: '{{post.title}}',
    url: window.location.href,

    // optional:
    description: '{{post.content.strip|safe}}',
    emailBody: '<a href=" + window.location.href + '">Click here</a> to see the article.'
});