我如何删除Skype电话号码识别? [英] How can I remove Skype phone number recognition?

查看:100
本文介绍了我如何删除Skype电话号码识别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果安装了Skype,某些浏览器中的电话号码会显示Skype图标。



我不想在任何地方显示Skype图标。

是否有任何JavaScript或PHP功能

解决方案

使用以下CSS防止您的网页上的数字格式化:

  span.skype_pnh_container {display:none!important;} 
span.skype_pnh_print_container {display:inline!important;}

编辑
Skype开始在类名称中添加数字以使它们唯一。您可以使用新的Css选择器来解决问题。

  span.skype_pnh_container {display:none!important;} 
span。 skype_pnh_print_container,span [class ^ =skype_pnh_print_container] {display:inline!important;}


If Skype is installed, phone numbers are showing up with a Skype icon in some browsers.

I don't want to show Skype icons anywhere, ever.

Is there any JavaScript or PHP function that can handle this?

解决方案

Use the following CSS to prevent skype from formatting the numbers on your page:

span.skype_pnh_container {display:none !important;}
span.skype_pnh_print_container {display:inline !important;}

edit Skype starts adding numbers in the class names to make them unique. You can solve by using the new Css selectors

span.skype_pnh_container {display:none !important;}
span.skype_pnh_print_container, span[class^="skype_pnh_print_container"] {display:inline !important;} 

这篇关于我如何删除Skype电话号码识别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆