网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 创建html5新标签(ie6~8)
内容
    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>
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/14 11:19:15