引用xml命名空间问题

前端之家收集整理的这篇文章主要介绍了引用xml命名空间问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

红色部分是兼容性需要,最开始我还以为是注释,坑了半天。。。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DEMO</title>
<!--[if lt IE 9]>
<?import namespace="v" implementation="#default#VML" ?>
<![endif]-->

</head>
<body >
</body>

</html>


条件注释判断浏览器版本

<!--[if lt IE 9]>IE9以及IE9以下版本可识别<![endif]--> <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]--> <!--[if IE]> 所有的IE可识别 <![endif]--> <!--[if IE 6]> 仅IE6可识别 <![endif]--> <!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]--> <!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]--> <!--[if IE 7]> 仅IE7可识别 <![endif]--> <!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]--> <!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]--> <!--[if IE 8]> 仅IE8可识别 <![endif]--> <!--[if IE 9]> 仅IE9可识别 <![endif]-->

原文链接:https://www.f2er.com/xml/295284.html

猜你在找的XML相关文章