请帮我用 jquery 替换字符串模式

发布于 2024-08-12 22:53:13 字数 577 浏览 2 评论 0原文

使用 Twitter 显示小部件并需要添加到哈希标签的链接。所以我需要一个模式替换,替换每个以井号/井号开头并以 Twitter 搜索链接的空格结尾的字符串。我对 jquery 非常笨拙——有人能指出我正确的方向吗——谢谢,任何人!

某事带我:

// FROM:
<ul id="tweets">
     <li>Some nutty tweet. #nutty</li>
     <li>A fruity tweet here. #fruity</li>
</ul>

// TO:
<ul id="tweets">
     <li>Some nutty tweet. <a href="http://twitter.com/search?q=%23nutty">#nutty</a></li>
     <li>A fruity tweet here. http://twitter.com/search?q=%23fruity">#fruity</a></li>
</ul>

using a twitter display widget and need to add links to the hash tags. so i need a pattern replacement, replacing each string that starts with a hash/pound sign and ends in a space with the twitter search link. i am pretty clumsy w/jquery--can someone point me in the right direction -- thanks, anyone!

something taking me:

// FROM:
<ul id="tweets">
     <li>Some nutty tweet. #nutty</li>
     <li>A fruity tweet here. #fruity</li>
</ul>

// TO:
<ul id="tweets">
     <li>Some nutty tweet. <a href="http://twitter.com/search?q=%23nutty">#nutty</a></li>
     <li>A fruity tweet here. http://twitter.com/search?q=%23fruity">#fruity</a></li>
</ul>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情域 2024-08-19 22:53:13

由于您使用的是 jQuery,我建议您使用 jQuery Tweetify Text来自 CSS-Snippets 库。

然后,您可以像这样使用它(给定您的代码):

$("#tweets li").tweetify();

除了匹配 #hashes 之外,它还将 URL 转换为超链接,并匹配 @username 和指向其个人资料的链接。

Since you are using jQuery, I would recommend the jQuery Tweetify Text from the CSS-Snippets library.

You would then use it like this (given your code):

$("#tweets li").tweetify();

In addition to matching #hashes, it also turns URL's into hyperlinks, and matches @username and links to their profile.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文