如何检测 mobile safari 添加的 tel: 链接?
我们使用 jQuery 向网站部分中出现的链接添加点击处理程序,以便在 Google 分析中跟踪该事件。我们看到一些事件来自我们尚未放在那里的链接,并且由于它们都具有类似于 1-234-567-890 的 HREF,我猜 Skype 插件有把它们放在那里,据我所知,这是由移动游猎添加的。
目前,我们的选择器如下所示:
links = $('.linksection a');
我应该如何更改它以排除 tel: 链接?
We use jQuery to add a click handler to links that occur in part of our site, in order to track the event in Google analytics. We're seeing that some events are coming in from links that we haven't put there, and since they've all got HREFs along the lines of 1-234-567-890 I'm guessing the skype plugin has put them there which I've learnt are being added by mobile safari.
At the moment, our selector looks like this:
links = $('.linksection a');
How should I change it to exclude the tel: links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设插件添加了以 tel:// 开头的链接,您可以使用此代码过滤掉以 tel 开头的所有链接:
示例 - http://jsfiddle.net/U2fR8/
Assuming the plugin adds the links starting with tel:// you can use this code which filters out all links that start with tel:
Example - http://jsfiddle.net/U2fR8/