通知栏并添加浏览器过时的脚本

发布于 2025-01-02 23:09:46 字数 179 浏览 0 评论 0原文

我目前正在开发通知栏 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゃ人海孤独症 2025-01-09 23:09:46

当您使用 jQuery 时,您可以使用 jQuery.browser 来检测用户正在使用什么类型和哪个版本的浏览器查看站点。如果您在 domready 事件中添加检查,则可以检测那里的版本并在需要时显示警告消息。

单击任何链接时隐藏消息就像将 onclick 事件添加到所有 A 元素上的正文一样简单,并隐藏警告消息(如果在事件触发时显示警告消息)。

jQuery("body a").click(function(){/*hide messages*/})

jQuery.browser: http://api.jquery.com/jQuery.browser/

示例:

if (jQuery.browser.msie && jQuery.browser.version=="6.0") {
    //show the warning box, the user is using IE6!
}

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("body a").click(function(){/*hide messages*/})

jQuery.browser: http://api.jquery.com/jQuery.browser/

Example:

if (jQuery.browser.msie && jQuery.browser.version=="6.0") {
    //show the warning box, the user is using IE6!
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文