zoukankan      html  css  js  c++  java
  • 将HTML格式的String转化为HTMLElement

    代码如下:

    <meta charset="UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <div id="content"></div>
    <script>
    var el = document.createElement("div");
    el.innerHTML = ' <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>titleValue</title> <meta name="description" content="It is a good way to learn science." /> <meta name="keywords" content="Symfony2,Redis,PHP" /> <meta name="author" content="CSDN.NET" /> <meta name="Copyright" content="CSDN.NET" /> </head> <body> hello</body> </html>';
    var descElements = el.getElementsByTagName("head");
    document.getElementById("content").innerHTML = descElements.length;
    </script>
    </body>
    </html>


    1、若将script放到head元素中,则加载脚本时,尚未加载div元素,此时会出现“document.getElementById(...) 为空或者不是对象”。
    2、以上代码在chrome中正常支行,输出结果为5,但在IE中输出结果为0.
    3、注意在js中定义数据不需要使用[],否则会出错。



  • 相关阅读:
    HDU.6681.Rikka with Cake(欧拉公式 树状数组)
    Codeforces.449C.Willem, Chtholly and Seniorious(ODT)
    2017-2018 ACM-ICPC, Asia Daejeon Regional Contest (E,G,H,I,K)
    CF GYM.101987A.Circuits(线段树)
    2018-2019 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2018)
    220
    219
    218
    217
    216
  • 原文地址:https://www.cnblogs.com/jediael/p/4304078.html
Copyright © 2011-2022 走看看