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

请输入您要查询的范文:

 

标题 创建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 3:57:49