如何使用 jquery 处理 $.get 并捕获 html 元素?
我正在使用 jQuery 阅读 html 文档。以下是我的代码。我需要找到 lang
属性,它是 HTML 元素的属性。但我很难按照我现在的方式选择它。当我处理 HTML 标记时,它要么没有值,要么为空,要么为未定义。
你能帮我解决这个问题吗?
$.get(page, function(response) {
alert(response);
alert($(response).filter('html').attr('lang'));
});
I'm reading a html document using jQuery. Following is my code. I need to find lang
attribute which is an attribute of HTML element. But I have trouble selecting it the way I'm doing. when I process HTML tag its either no value, null
or undefined
.
Can u please help me figure this out?
$.get(page, function(response) {
alert(response);
alert($(response).filter('html').attr('lang'));
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您对响应文本执行
$(response)
时,大多数(如果不是全部)浏览器都会删除html
元素。看看它,我看到两个选项:将文本作为文本处理。不太理想,但解析
标记上的属性并不复杂。例如,这应该提取
lang
属性,排除异常:实例 | 实时源
通常警告:HTML 不是常规语言,因此您无法可靠地解析它用正则表达式。有时,经过精心调整的正则表达式可以从 HTML 文本中提取一些信息,并且当使用预期的输入数据对其进行严格测试时,这些信息可能“足够好”,但请注意,它们无法针对所有可能的 HTML 源文本可靠地工作。
不要使用
$.get
,而是创建一个隐藏的 iframe 并将page
分配给它作为其src
。然后使用iframe.contentDocument.documentElement
访问html
元素,并使用getAttribute
读取其lang
属性。这可能看起来像这样:
实时复制 | 实时源 | 正在加载的页面来源
(我必须采取一些防御措施,因为 JSBin 将我们的页面包装在它自己的框架中。)
When you do
$(response)
on the response text, thehtml
element gets dropped by most (if not all) browsers. To look at it, I see two options:Process the text as text. Not ideal, but it's not that complicated to parse the attributes on the
<html>
tag. For instance, this should extract thelang
attribute barring the unusual:Live example | Live source
Usual caveat: HTML is not a regular language, so you can't reliably parse it with regular expresions. Sometimes a well-tuned regex can extract bits of information from HTML text, and those can be "good enough" when they're rigorously tested with the expected input data, but just beware that they cannot work reliably against all possible HTML source texts.
Rather than using
$.get
, create a hidden iframe and assignpage
to it as itssrc
. Then useiframe.contentDocument.documentElement
to access thehtml
element, and usegetAttribute
to read itslang
attribute.That might look something like this:
Live copy | Live source | Source of page being loaded
(I've had to be somewhat defensive there because JSBin wraps our page in a frame of its own.)
你可以使用 javascript 来做这样的事情:
You can use javascript to do something like this: