<tfoot id='QeTcu'></tfoot>
      1. <i id='QeTcu'><tr id='QeTcu'><dt id='QeTcu'><q id='QeTcu'><span id='QeTcu'><b id='QeTcu'><form id='QeTcu'><ins id='QeTcu'></ins><ul id='QeTcu'></ul><sub id='QeTcu'></sub></form><legend id='QeTcu'></legend><bdo id='QeTcu'><pre id='QeTcu'><center id='QeTcu'></center></pre></bdo></b><th id='QeTcu'></th></span></q></dt></tr></i><div id='QeTcu'><tfoot id='QeTcu'></tfoot><dl id='QeTcu'><fieldset id='QeTcu'></fieldset></dl></div>
      2. <legend id='QeTcu'><style id='QeTcu'><dir id='QeTcu'><q id='QeTcu'></q></dir></style></legend>
        • <bdo id='QeTcu'></bdo><ul id='QeTcu'></ul>

        <small id='QeTcu'></small><noframes id='QeTcu'>

        “getElementById 不是函数"尝试解析 AJAX 响应时

        时间:2023-10-15

      3. <small id='mBhw7'></small><noframes id='mBhw7'>

        <tfoot id='mBhw7'></tfoot>

          <tbody id='mBhw7'></tbody>

            • <bdo id='mBhw7'></bdo><ul id='mBhw7'></ul>
              1. <i id='mBhw7'><tr id='mBhw7'><dt id='mBhw7'><q id='mBhw7'><span id='mBhw7'><b id='mBhw7'><form id='mBhw7'><ins id='mBhw7'></ins><ul id='mBhw7'></ul><sub id='mBhw7'></sub></form><legend id='mBhw7'></legend><bdo id='mBhw7'><pre id='mBhw7'><center id='mBhw7'></center></pre></bdo></b><th id='mBhw7'></th></span></q></dt></tr></i><div id='mBhw7'><tfoot id='mBhw7'></tfoot><dl id='mBhw7'><fieldset id='mBhw7'></fieldset></dl></div>
                <legend id='mBhw7'><style id='mBhw7'><dir id='mBhw7'><q id='mBhw7'></q></dir></style></legend>

                1. 本文介绍了“getElementById 不是函数"尝试解析 AJAX 响应时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在运行 GM_xmlhttpRequest(在 Greasemonkey 脚本中)并将 responseText 存储到新创建的 HTML 元素中:

                  I'm running GM_xmlhttpRequest (in a Greasemonkey script) and storing the responseText into a newly created HTML element:

                  var responseHTML = document.createElement('HTML');
                  ...
                  onload: function() { responseHTML.innerHTML = response.responseText; }
                  


                  然后我试图在 responseHTML:

                  console.log(responseHTML.getElementsByTagName('div'));
                  console.log(responseHTML.getElementById('result_0'));
                  


                  第一个工作正常,但不是第二个.有什么想法吗?


                  The first works fine, but not the second. Any ideas?

                  推荐答案

                  getElementById 不是 HTML 元素的方法.它是文档节点的一个方法.因此你不能这样做:

                  getElementById is not a method of HTML elements. It is a method of the document node. As such you can't do:

                  div.getElementById('foo'); // invalid code
                  

                  您可以通过递归遍历 children 来实现自己的函数来搜索 DOM.在较新的浏览器上,您甚至可以使用 querySelector 方法.对于最小的开发,您可以使用 jQuery 或 sizzle.js(jQuery 背后的查询引擎)等库.

                  You can implement your own function to search the DOM by recursively going through children. On newer browsers you can even use the querySelector method. For minimal development you can use libraries like jQuery or sizzle.js (the query engine behind jQuery).

                  这篇关于“getElementById 不是函数"尝试解析 AJAX 响应时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在 chrome 开发工具中隐藏 401 console.error 在 fetch( 下一篇:XMLHttpRequest、jQuery.ajax、jQuery.post、jQuery.get 有什么

                  相关文章

                  最新文章

                  <legend id='ao3Ph'><style id='ao3Ph'><dir id='ao3Ph'><q id='ao3Ph'></q></dir></style></legend>

                2. <tfoot id='ao3Ph'></tfoot>

                    <bdo id='ao3Ph'></bdo><ul id='ao3Ph'></ul>
                  <i id='ao3Ph'><tr id='ao3Ph'><dt id='ao3Ph'><q id='ao3Ph'><span id='ao3Ph'><b id='ao3Ph'><form id='ao3Ph'><ins id='ao3Ph'></ins><ul id='ao3Ph'></ul><sub id='ao3Ph'></sub></form><legend id='ao3Ph'></legend><bdo id='ao3Ph'><pre id='ao3Ph'><center id='ao3Ph'></center></pre></bdo></b><th id='ao3Ph'></th></span></q></dt></tr></i><div id='ao3Ph'><tfoot id='ao3Ph'></tfoot><dl id='ao3Ph'><fieldset id='ao3Ph'></fieldset></dl></div>

                    1. <small id='ao3Ph'></small><noframes id='ao3Ph'>