quot;getElementById not a functionquot; when trying to parse an AJAX response?(“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 响应时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“getElementById 不是函数"尝试解析 AJAX 响应时?
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01