
1 hpze2000 OP 问题补充, 如果是 安卓下 又如何实现。。 |
2 Ricepig Nov 1, 2013 via iPhone 浏览器插件吧 |
4 inee Nov 1, 2013 自己写的端口协议 |
6 qingting Nov 1, 2013 Google 了一下 http://liuhaixiao.iteye.com/blog/738474 |
7 ksky Nov 1, 2013 开发的时候可以配置一个短链接,比如weixin://,然后你在浏览器里输入weixin://就可以调出微信了。 开发App的时候定义的。 |
10 yangg Nov 1, 2013 html5有这个: navigator.registerProtocolHandler(protocol, uri, title); Note for Chrome: Protocol whitelist includes mailto, mms, nntp, rtsp, and webcal. Custom protocols must be prefixed with "web+". 其它这是我以前看的相关链接 http://hi.baidu.com/weforhappy/blog/item/43afabc5c0aa23a48326acd1.html http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx http://hublog.hubmed.org/archives/001154.html http://updates.html5rocks.com/2011/06/Registering-a-custom-protocol-handler http://stackoverflow.com/questions/411544/custom-protocol-in-linux |
12 keniusahdu Nov 1, 2013 @hpze2000 Android用Intent。Intent intent= new Intent(); intent.setAction("android.intent.action.VIEW"); |
13 keniusahdu Nov 1, 2013 @hpze2000 Intent intent= new Intent(); intent.setAction("android.intent.action.VIEW"); intent.setClassName("com.android.browser","启动你的包+Activity"); startActivity(intent); 大概是这样。好久不写。记不太清。参考下吧 |
14 darasion Nov 1, 2013 就是给浏览器注册一个协议处理程序。 |