编写更高效的属性选择器函数
有没有更好的方法来编写此代码:
$('img').filter(function() { return $(this).attr('align').length > 0; }).parent().css('background', 'red');
目标是选择页面上具有“align”属性的所有图像元素并将样式应用于父级。
Is there a better way of writing this code:
$('img').filter(function() { return $(this).attr('align').length > 0; }).parent().css('background', 'red');
The goal is to select all image elements on the page that have an 'align' attribute and apply a style to the parent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就这样:)
http://jsfiddle.net/2u7fg/3/
there you go :)
http://jsfiddle.net/2u7fg/3/
您可以使用以下语法进行过滤,指定匹配元素必须具有“align”属性:
You can filter using the following syntax, specifying the matching element(s) must have an 'align' attribute: