臃肿的 jquery xml 请求
我想知道是否有人有替代方案。
$(xml).find("a").each(function(){
$(this).find('b').each(function(){
$(this).find('c').each(function(){
$(this).find('d1').each(function(){
sectionValidation.RegisterTerms.setRegisterTermsArray(this);
});
$(this).find('d2').each(function(){
sectionValidation.RegisterTerms.checkValidVariations(this, val);
});
});
});
});
它看起来确实很臃肿,必须有一种更优雅的方法来获取嵌套的 xml 数据。谢谢
I was wondering if anyone had an alternative to this.
$(xml).find("a").each(function(){
$(this).find('b').each(function(){
$(this).find('c').each(function(){
$(this).find('d1').each(function(){
sectionValidation.RegisterTerms.setRegisterTermsArray(this);
});
$(this).find('d2').each(function(){
sectionValidation.RegisterTerms.checkValidVariations(this, val);
});
});
});
});
It seems really bloated and there has to be a more elegant approach to getting nested xml data. Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您至少可以将
a
到c
选择器与 后代选择器(中间有空格),如下所示:对于另一个,这取决于文档的大小是否会更快:
You can at least combine your
a
throughc
selector with a decendant selector (space in-between), like this:For the other, it depends on the size of the document as to if this would be faster: