jQuery 中的异常(选择器 [,上下文])
谁能告诉我为什么使用下面的代码会出现异常?
var invalidhtml = '<tr><div id="residualErrors" style="display:none;"></div><form action="" method="post"><table><tr><td></td></tr></table></form></tr>';
var form = $("form", invalidhtml);
Can anybody tell me why I get an exception using the code below?
var invalidhtml = '<tr><div id="residualErrors" style="display:none;"></div><form action="" method="post"><table><tr><td></td></tr></table></form></tr>';
var form = $("form", invalidhtml);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜想,通过您对
somehtml
的命名,当 jQuery 需要一个对象时,您正在传递一个字符串。I'd guess by your naming of
somehtml
that you're passing in a string when jQuery is expecting an object.问题是 html 无效,因为“tr”元素下没有“td”元素。 jQuery 通常可以处理这个问题,但如果“tr”元素中的某处还包含一个“表”,那么它会引发异常。
我最初遇到问题的地方是更复杂的 html,所以我希望它可以帮助别人。
下面任何一个有效的 html 示例都可以工作,而无效的则不能。
The problem is that the html is invalid as there is no "td" element under the "tr" element. jQuery can normally handle this but if there is also a "table" included within the "tr" element somewhere then it raises an exception.
The original place where I had the problem was much more complicated html so I hope it helps somebody.
Any of the validhtml examples below work, the invalid one does not.