<!--[if IE 6]>仅IE6可识别<![endif]-->
<!--[if lte IE 6]>IE6及其以下版本可识别<![endif]-->
<!--[if lt IE 6]>IE6以下版本可识别<![endif]-->
<!--[if gte IE 6]>IE6及其以上版本可识别<![endif]-->
<!--[if gt IE 6]>IE6以上版本可识别<![endif]-->
<!--[if IE]>所有的IE可识别<![endif]-->
以上这些代码写法都是针对ie各版本浏览器的,在其他浏览器中这些代码都会被解释为Html注释而直接无视掉。
<body>
<!--[if IE 6]>
<div>
IE6中才可以看到
</div>
<![endif]-->
<div>
其他
</div>
</body>
所以要想些针对firefox之类的非ie浏览器,需要这么写:<!--[if !IE]><!-->除IE外都可识别<!--<![endif]-->
利用HTML5新标签对象的方法来进行检测,比如Canvas对象的getContext()、Video对象的canPlayType等。如果浏览器支持HTML5,则返回相应的期望值(返回函数体,布尔值为true),否则无法获得期望值(返回undefined,布尔值为false)。
Canvas对象的getContext
// 方法一/**
* [supportHtml5 言成科技&HTML5学堂]
* @return {[type]} [description]
*/
function supportCanvas() {
return (typeof document.createElement('canvas').getContext === "function")
}
console.log(supportCanvas())
Video对象的canPlayType
// 方法二/*
* [supportsVideo 言成科技&HTML5学堂]
* @return {[type]} [description]
*/
function supportVideo() {
return !!document.createElement('video').canPlayType
}
console.log(supportVideo())
有以下两种方法可以判断浏览器是否支持html5:
方法一:
<script>function checkhHtml5() {
if (typeof(Worker) !== "undefined") { alert("支持HTML5") } else { alert("不支持HTML5") } }
</script>
方法二:
<canvas id="Canvas"></canvas><script>
if (!document.getElementById("Canvas").getContext){
alert("不支持html5")
}else{
alert("支持html5")
}
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)