IE8以下不支援H5新標籤的解決方案
阿新 • • 發佈:2019-02-19
猿友們再寫頁面的時候,* * 客戶可能要求相容IE8以下版本,可是你用了幾個H5的新標籤,在IE8以下完全不識別怎麼辦呢。這時,不要慌不要忙,跟我一起念:如意如意隨我心意快快顯靈快快顯靈 ,哈哈哈
教大家個簡單的方法直接通過JS建立相同名字的標籤就可以了。
下面直接擼程式碼:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
document.createElement("header" );
document.createElement("section");
document.createElement("footer");
</script>
<style>
header{
width: 200px;
height: 200px;
display: block;
background-color: red;
}
section{
width: 150 px;
height: 150px;
display: block;background-color: yellow;
}
footer{
width: 100px;
height: 100px;
display: block;
background-color: blue;
}
</style>
</head>
<body>
<header>header</header >
<section>section</section>
<footer>footer</footer>
</body>
</html>
style樣式中需要display:block;是因為JS中建立的標籤是內聯的。
初學者,小知識,歡迎反駁!