-1

我只是想分享我们的成功,因为我在任何地方都找不到此信息(全部在 PHP 中)

使用 .NET 库、AJAX 和 Javascript,我的同事运行了 twitter API 1.1,但它没有可点击的 URL、@mentions 或 #hashtags。

4

1 回答 1

-1

这是解决方案:

function replaceAtMentionsWithLinks(text) { 
                var exp = /@([a-z\d_]+)/ig; 
                return text.replace(exp, "<a href='http://twitter.com/$1' 
                    <http://twitter.com/%241%27> @$1</a>"); 
                } 
        function replaceURLWithHTMLLinks(text) {
                var exp = /(\b(www\.|http\:\/\/)\S+\b)/ig;
                return text.replace(exp,"<a href='$1'>$1</a>"); 
                }
        function replacehashtags(text) {
                var exp = /\#(\w+)/ig;
                return text.replace(exp, "<a target='_blank' 
                href='https://twitter.com/search?q=%23$1&src=hash'>#$1</a>");
                }
于 2013-06-27T22:06:26.393 回答