document.createelement能創(chuàng)建html5的新標簽,但動態(tài)創(chuàng)建尤其是元素時,還是用innerhtml比較適合。不過ie的innerhtml存在大量的問題,style,link ,script就需要特殊方法去生成。這種方法又將用于我們html5的新元素的創(chuàng)建!見下面例子:
代碼如下:
<!doctype html>
<html>
<head>
<title>動態(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>
動態(tài)創(chuàng)建html5元素 by 司徒正美
</body>
</html>
代碼二
<!doctype html>
<html>
<head>
<title>動態(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>
動態(tài)創(chuàng)建html5元素 by 司徒正美
</body>
</html>