创建HTML5新标签(IE6~8)_脚本HTML教程-查字典教程网
创建HTML5新标签(IE6~8)
创建HTML5新标签(IE6~8)
发布时间:2015-05-12 来源:查字典编辑
摘要:document.createelement能创建html5的新标签,但动态创建尤其是元素时,还是用innerhtml比较适合。不过ie的i...

  document.createelement能创建html5的新标签,但动态创建尤其是元素时,还是用innerhtml比较适合。不过ie的innerhtml存在大量的问题,style,link ,script就需要特殊方法去生成。这种方法又将用于我们html5的新元素的创建!见下面例子:

<!doctype html>
<html>
  <head>
    <title>动态创建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>
动态创建html5元素 by 司徒正美
</body>
</html>

代码二

<!doctype html>

<html>
  <head>
    <title>动态创建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>
动态创建html5元素 by 司徒正美
</body>
</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新脚本HTML教程学习
    热门脚本HTML教程学习
    网页设计子分类