通知栏并添加浏览器过时的脚本
我目前正在开发通知栏 http://jsfiddle.net/nZe8t/ 我想添加浏览器过时消息脚本,用于检测所使用的浏览器是否是最新的。
显示栏的操作当前应用于按钮,但我希望在检测到过时的浏览器时显示通知栏。
I am currently working on a notification bar http://jsfiddle.net/nZe8t/ and I would like to add a browser out-date message script which detects if the used browser is up to date.
The action to show the bar is currently applied to a button, but I want the notification bar to appear when it detects an out-dated browser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用 jQuery 时,您可以使用 jQuery.browser 来检测用户正在使用什么类型和哪个版本的浏览器查看站点。如果您在 domready 事件中添加检查,则可以检测那里的版本并在需要时显示警告消息。
单击任何链接时隐藏消息就像将 onclick 事件添加到所有 A 元素上的正文一样简单,并隐藏警告消息(如果在事件触发时显示警告消息)。
jQuery.browser: http://api.jquery.com/jQuery.browser/
示例:
As you're using jQuery you can use jQuery.browser to detect what type and which version of browser the user is viewing the site with. If you add a check into your domready event, you can detect the version there and show the warning message if needed.
Hiding the message when clicking any link is as simple as adding an onclick event to the body on all A elements and hiding the warning message if it is being shown when the event is fired.
jQuery.browser: http://api.jquery.com/jQuery.browser/
Example: