Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 HTML 中创建一个指向 Skype 个人资料的应用程序链接。我发现您可以执行以下操作:
<a href="skype:profile_name">Link to my profile</a>
但这似乎触发了对该配置文件的 Skype 呼叫。我只想选择浏览个人资料或将其添加为联系人,我该怎么做?
这似乎没有很好的文档记录,但有一些方法可以为 Skype 个人资料链接指定操作。这是语法
skype:profile_name?action
此类行动的例子是
call
chat
voicemail
sendfile
add
userinfo
在这种情况下,查看个人资料的链接将如下所示
<a href="skype:profile_name?userinfo">Link to my profile</a>
另请参阅MSDN 上的 Skype URIs 页面。