欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery判断是否为ie浏览器的方法

程序员文章站 2022-03-07 14:27:09
...

jquery判断是否为ie浏览器的方法:首先创建一个前端代码示例文件;然后通过“jquery.browser”方法判断是否是ie浏览器即可。

jquery判断是否为ie浏览器的方法

本教程操作环境:windows7系统、jquery1.2.6版本,该方法适用于所有品牌电脑。

推荐:《jquery视频教程

可以用jquery.browser判断是否是ie浏览器。

$.browser 属性在jQuery 1.9已经被移除。用于返回用户当前使用的浏览器的相关信息。

语法:$.browser

参数:

jquery判断是否为ie浏览器的方法

示例:

<script type="text/javascript" 
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var userAgent = window.navigator.userAgent.toLowerCase();
$.browser.msie10 = $.browser.msie && /msie 10\.0/i.test(userAgent);
$.browser.msie9 = $.browser.msie && /msie 9\.0/i.test(userAgent);
$.browser.msie8 = $.browser.msie && /msie 8\.0/i.test(userAgent);
$.browser.msie7 = $.browser.msie && /msie 7\.0/i.test(userAgent);
$.browser.msie6 = !$.browser.msie8 && !$.browser.msie7 &&
 $.browser.msie && /msie 6\.0/i.test(userAgent);
$(".info").html(
"<h3>userAgent:</h3>" + userAgent + "<br />" +
"<h3>Is IE 10?</h3>" + $.browser.msie10 +
"<h3>Is IE 9?</h3>" + $.browser.msie9 +
"<h3>Is IE 8?</h3>" + $.browser.msie8 +
"<h3>Is IE 7?</h3>" + $.browser.msie7 +
"<h3>Is IE 6?</h3>" + $.browser.msie6
);
});
</script>
<body>
<div class="info"></div>
</body>

以上就是jquery判断是否为ie浏览器的方法的详细内容,更多请关注其它相关文章!

相关标签: jquery