请帮我用 jquery 替换字符串模式
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 jQuery,我建议您使用 jQuery Tweetify Text来自 CSS-Snippets 库。
然后,您可以像这样使用它(给定您的代码):
除了匹配
#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):
In addition to matching
#hashes
, it also turns URL's into hyperlinks, and matches@username
and links to their profile.