jQuery 获取innerHTML 不适用于 HTMLFontElement 对象
我有 jQuery 来选择所有 font
元素,这些元素是存储在 var html
中的 html 中具有 id="right"
的元素的子元素。 ..当我发出警报以查看它获得了多少个元素时:
alert($("#right > font", html).length);
它给了我一个警报:5
但是当我尝试以下任何操作时,我没有收到任何警报...
alert($("#right > font", html)[0].html());
alert($("#right > font", html)[0].text());
alert($("#right > font", html)[0].val());
任何有想法吗?
谢谢,
马特
I have jQuery to select all font
elements that are children of the element with id="right"
within the html stored in the var html
... when I do an alert to see how many elements it gets:
alert($("#right > font", html).length);
it gives me an alert of: 5
but when I try any of the following, I don't get any alerts...
alert($("#right > font", html)[0].html());
alert($("#right > font", html)[0].text());
alert($("#right > font", html)[0].val());
Any Ideas?
Thanks,
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于该元素不是 jQuery 的实例,它只是一个 DOM 对象,因此您不能使用任何 jQuery 方法。您可以使用innerHTML 来获取结果。
如果你想对元素应用任何 jQuery 方法,你必须将其设置为 jquery 对象,例如
或
Since the element is not an instance of jQuery, and its just a DOM object you can't use any of the jQuery methods. You can use innerHTML to get the result.
If you want to apply any of the jQuery methods to the element you have to make it a jquery object like
or