IE的兼容性设置

编程入门 行业动态 更新时间:2024-10-28 18:28:29
本文介绍了IE的兼容性设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

非常紧急 希望在这里珍惜你的一些想法。 我有一些支持IE 10及以上的功能,所以基本上可以控制兼容性模式通过元标记

< html > < head > < meta http-equiv = X-UA兼容 content = IE = 11,IE = 10 / > < script > 函数getInternetExplorerVersion(){ var rv = -1; //返回值假定失败。 if(navigator.appName =='Microsoft Internet Explorer'){ var ua = navigator.userAgent; var re = new RegExp(MSIE([0-9] {1,} [\ 0-9] {0,})); if(re.exec(ua)!= null){ rv = parseFloat(RegExp。$ 1); } } 返回rv; } function checkVersion(){ var msg =你没有使用Internet Explorer。; var ver = getInternetExplorerVersion(); if(ver> -1){ if(ver> = 11.0){ msg =你正在使用最近的Internet Explorer副本。 } else { msg =你应该升级你的Internet Explorer副本。; } } alert(msg); } checkVersion(); < / script > < / head > < / html >

checkVersion(); Basicaly我想用一个弹出窗口警告一个用户,如果IE版本我8或更低 我想显示这个弹出是否兼容打开或关闭模式。 我们可以通过此元标记控制兼容性设置,而无需手动打开/关闭。 < meta http -equiv =X-UA-Compatiblecontent =IE = 11,IE = 10/> 紧急。 谢谢

解决方案

1); } } 返回rv; } function checkVersion(){ var msg =你没有使用Internet Explorer。; var ver = getInternetExplorerVersion(); if(ver> -1){ if(ver> = 11.0){ msg =你正在使用最近的Internet Explorer副本。 } else { msg =你应该升级你的Internet Explorer副本。; } } alert(msg); } checkVersion(); < / script > < / head > < / html >

checkVersion(); Basicaly我想用一个弹出窗口警告一个用户,如果IE版本我8或更低 我想显示这个弹出是否兼容打开或关闭模式。 我们可以通过此元标记控制兼容性设置,而无需手动打开/关闭。 < meta http -equiv =X-UA-Compatiblecontent =IE = 11,IE = 10/> 紧急。 感谢

Its very urgent hope to cherish some of your thoughts here. I have some functionaltiy which supports IE 10 and above so basically is it possible to control the compatibility mode through meta tags

<html> <head> <meta http-equiv="X-UA-Compatible" content="IE=11, IE=10"/> <script> function getInternetExplorerVersion() { var rv = -1; // Return value assumes failure. if (navigator.appName == 'Microsoft Internet Explorer') { var ua = navigator.userAgent; var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})"); if (re.exec(ua) != null) { rv = parseFloat( RegExp.$1 ); } } return rv; } function checkVersion() { var msg = "You're not using Internet Explorer."; var ver = getInternetExplorerVersion(); if ( ver > -1 ) { if ( ver >= 11.0 ) { msg = "You're using a recent copy of Internet Explorer." } else { msg = "You should upgrade your copy of Internet Explorer."; } } alert(msg); } checkVersion(); </script> </head> </html>

checkVersion(); Basicaly i want to alert a usert with a pop up if IE version i 8 or less I want to show this pop up whether compatabilty mode is on or off. Can we control compatability settings through this meta tags without manually turning on/off. <meta http-equiv="X-UA-Compatible" content="IE=11, IE=10"/> Urgent . Thanks

解决方案

1 ); } } return rv; } function checkVersion() { var msg = "You're not using Internet Explorer."; var ver = getInternetExplorerVersion(); if ( ver > -1 ) { if ( ver >= 11.0 ) { msg = "You're using a recent copy of Internet Explorer." } else { msg = "You should upgrade your copy of Internet Explorer."; } } alert(msg); } checkVersion(); </script> </head> </html>

checkVersion(); Basicaly i want to alert a usert with a pop up if IE version i 8 or less I want to show this pop up whether compatabilty mode is on or off. Can we control compatability settings through this meta tags without manually turning on/off. <meta http-equiv="X-UA-Compatible" content="IE=11, IE=10"/> Urgent . Thanks

更多推荐

IE的兼容性设置

本文发布于:2023-11-03 09:13:19,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1554781.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:兼容性

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!