如何附加 LinkedIn 共享标题?
Posted
技术标签:
【中文标题】如何附加 LinkedIn 共享标题?【英文标题】:How can I append LinkedIn share title? 【发布时间】:2018-05-04 13:44:11 【问题描述】:我正在使用 jQuery 获取主标题部分,但我想在标题末尾添加一些自定义文本。我几乎确信我把撇号弄乱了,但我不知道在哪里。
我要添加的文字是“CUSTOM SHARE TEXT”。
这是我卡住的地方:
<a href="#" onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + jQuery('.active-review').attr('href') + '&title=' + jQuery('.active-review .head-container').text() + 'CUSTOM SHARE TEXT', '', '_blank, width=500, height=500, resizable=yes, scrollbars=yes'); return false;">
<i class="fa fa-fw fa-linkedin"></i> LinkedIn</a>
感谢您的帮助。
【问题讨论】:
【参考方案1】:我认为您的问题与 URL 中的空格和其他无效字符有关。
从文本构建 URL 时,您应该始终使用 encodeURIComponent
。
另外,正如你所说的,你忘记了一些撇号。
试试这个:
<a href="#" onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(jQuery('.active-review').attr('href')) + '&title=' + encodeURIComponent(jQuery('.active-review .head-container').text()) + encodeURIComponent('CUSTOM SHARE TEXT'), '', '_blank', 'width=500, height=500, resizable=yes, scrollbars=yes'); return false;">
<i class="fa fa-fw fa-linkedin"></i> LinkedIn
</a>
【讨论】:
感谢encodeURIComponent
的建议!但是共享时自定义文本仍然没有显示,只有主标题。我已经尝试解决这个问题几个小时了 - 快疯了!
请发布一个有效的网址(手写),以便我可以将其与您的代码进行比较。【参考方案2】:
问题在于 jQuery 组件中的空格过多。添加trim()
函数后,我的问题似乎解决了。附加到标题的文本总是在这里,但由于标题后面有几十个%20
,所以不可见。
这是适合我的最终代码。
<a href="#" onclick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(jQuery('.active-review .head-container').text().trim()) + encodeURIComponent(' CUSTOM TEXT'),'', '_blank, width=500, height=500, resizable=yes, scrollbars=yes'); return false;"
><i class="fa fa-fw fa-linkedin"></i> LinkedIn</a>
【讨论】:
以上是关于如何附加 LinkedIn 共享标题?的主要内容,如果未能解决你的问题,请参考以下文章
是否可以将共享文本作为查询字符串添加到 LinkedIn 共享 URL 并使其与 LinkedIn 移动应用程序一起使用?