使用https://twitter.com/intent/user?user_id=进行关注按钮删除按钮样式

时间:2014-05-22 17:07:12

标签: javascript twitter

我一直关注https://dev.twitter.com/docs/intents#follow-intent上的网络意图文档,其中描述的链接需要如下:

intent/user?screen_name=xxx

但最好是

intent/user?user_id=xxx

使用第一个示例显示样式化的twitter按钮,但使用user_id不会。

使用screen_name

<a href="https://twitter.com/intent/user?screen_name=twitterapi" 
class="twitter-follow-button" data-show-count="false" data-size="large">
Follow@twitterapi</a>  

使用user_id

<a href="https://twitter.com/intent/user?user_id=6253282" 
class="twitter-follow-    button" data-show-count="false" 
data-size="large">Follow @twitterapi</a>  

如果使用user_id而不是screen_name

,是否可以设置按钮样式

1 个答案:

答案 0 :(得分:0)

是。您可以设置使用.split()方法对href值拆分&#34;?&#34; ,或拆分(&#34;?&#34;)。

然后写if if和else if语句。一个用于从屏幕名称开始,一个用于用户名,然后您可以使用jQuery的.attr()应用样式,以应用样式表中定义的所需类。

这会回答你的问题吗?