jQuery:IE6警报

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery:IE6警报相关的知识,希望对你有一定的参考价值。

this function check browser type and version if browser is ie6, display on top of page red box with "ie6 hate text" + links to download page new browsers
  1. jQuery.ie6Alert = function(mainText) {
  2. if($.browser.msie && $.browser.version=="6.0") {
  3. // if($.browser.msie && $.browser.version <= 6 )
  4. var links =
  5. '<div>Nainstalujte si: ' // install
  6. + '<a href="http://www.microsoft.com/ie8/">IE8</a> nebo ' // ie8 or
  7. + '<a href="http://www.mozilla-europe.org/cs/firefox/">Firefox</a> nebo ' // firefox or
  8. + '<a href="http://www.opera.com/download/">Operu</a> nebo ' // opera or
  9. + '<a href="http://www.google.com/chrome/">Chrome</a> nebo ' // chrome or
  10. + '<a href="http://www.apple.com/safari/download/">Safari</a> ' // safari
  11. + '- proste neco novejsiho...</div>'; // simple another new browser
  12. var html = '<div class="ie6alert">' + mainText + links + '</div>'
  13. $("body").prepend(html)
  14. // add css to div.ie6alert
  15. $('.ie6alert')
  16. .css("color", "#D8000C")
  17. .css("border", "0")
  18. .css("border-bottom", "1px solid")
  19. .css("margin", "0")
  20. .css("padding", "1em 5em")
  21. .css("font", "normal 2em Helvetica, Arial, sans-serif")
  22. .css("text-align", "center")
  23. .css("background-color", '#FFBABA');
  24. // add css to div with links
  25. $('.ie6alert div')
  26. .css('margin-top', '10px')
  27. .css("font-size", "0.5em");
  28. // add css to link
  29. $('.ie6alert div a')
  30. .css('color', '#D8000C')
  31. .css('font-weight', 'bold')
  32. .css('letter-spacing', '0.1ex');
  33. }
  34. }
  35.  
  36. // start with
  37.  
  38. $(document).ready(function(){
  39. $.ie6Alert('This web hate IE6, browser from year 2001...');
  40. });

以上是关于jQuery:IE6警报的主要内容,如果未能解决你的问题,请参考以下文章

如何使用警报管理器将数据从片段传递到广播接收器

在导航到下一个片段时在底部导航视图中打开警报对话框

jQuery IE6检测

如何向 UILocalNotification 警报添加操作按钮/操作?

jQuery IE6和IE7伪选择器解决方法

AlertDialog 更改片段中的背景颜色 [重复]