标签: javascript protocols
我想编写一个Web应用程序,在自定义协议中打开一个链接,例如myprotocol:someinformationgoeshere。你知道,有点像mailto:例如,如果人们在他们的HTML中有类似的链接:<a href="myprotocol:someinformationgoeshere">link</a>,它将通过我的网络应用程序打开链接。
myprotocol:someinformationgoeshere
<a href="myprotocol:someinformationgoeshere">link</a>
然而,我似乎无法做到这一点。我发现的唯一一件事就是registerProtocolHandler(),由于安全问题,它似乎不起作用。