标签: jquery html5 css3 browser
如果浏览器不支持代码,我想显示提醒。示例:my profile
Firefox 20不支持它,因此应该有一个警告
"您的浏览器不支持此网站,请升级您的 浏览器"
我需要添加哪些代码才能显示此提醒?
答案 0 :(得分:0)
您可以使用navigator.userAgent找出用户正在使用的浏览器,并在需要时显示提醒。
navigator.userAgent
if(/regEx/i.test(navigator.userAgent) )其中regEx是用于检测不支持的浏览器的正则表达式
if(/regEx/i.test(navigator.userAgent) )