document.createelement能創(chuàng)建html5的新標(biāo)簽,但動(dòng)態(tài)創(chuàng)建尤其是元素時(shí),還是用innerhtml比較適合。不過(guò)ie的innerhtml存在大量的問(wèn)題,style,link ,script就需要特殊方法去生成。這種方法又將用于我們html5的新元素的創(chuàng)建!見(jiàn)下面例子:
代碼如下:
<!doctype html>
<html>
<head>
<title>動(dòng)態(tài)創(chuàng)建html5元素 by 司徒正美</title>
<script>
var div = document.createelement(div);
div.innerhtml = <section>section</section>;
alert( div.innerhtml ); // section</section> in ie6~ie8
</script>
</head>
<body>
動(dòng)態(tài)創(chuàng)建html5元素 by 司徒正美
</body>
</html>
代碼二
<!doctype html>
<html>
<head>
<title>動(dòng)態(tài)創(chuàng)建html5元素 by 司徒正美</title>
<script>
var div = document.createelement(div);
div.innerhtml = fixie<div> +<section>section</section> +</div>;
alert(div.innerhtml );
alert( div.lastchild.innerhtml );
</script>
</head>
<body>
動(dòng)態(tài)創(chuàng)建html5元素 by 司徒正美
</body>
</html>