我有一个.filter
函数,该函数可以标记包含红色输入字段的所有<td>
父项。
然而,我需要恰恰相反。因此,请返回不包含<input
的所有字段。
我尝试了if ($(this).html().indexOf('<input') == -1) {
,但只是以某种方式标记了所有行。
我的jQuery:
$(document).ready(function () {
$("#ListView1_itemPlaceholderContainer table table table td").filter(function (index) {
if ($(this).html().indexOf('<input') > 0) {
return true;
}
}).closest('div').css('background-color', 'red');
});
这是我的HTML
<div id="ListView1_itemPlaceholderContainer" style=
"font-family: Verdana, Arial, Helvetica, sans-serif;">
<div style="background-color: #FFFFFF; color: #333333;">
<table style="width: 100%;">
<tbody>
<tr>
<td style="width: 71px"><img id="ListView1_userInfo1_0_ImageUser_0" src=
"http://pbs.twimg.com/profile_images/13/6GA5kEu6_normal.png" style=
"height:65px;width:65px;" /></td>
<td style="vertical-align: top">
<table style="width: 100%;">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td>
<table style="width: 100%;">
<tbody>
<tr>
<td><img id="ListView1_userInfo1_0_Imagebg_0" src=
"https://pbs.twimg.com/profile_banners/13/1402427948" style=
"height:64px;width:251px;" /><br />
<span id="ListView1_userInfo1_0_LabelName_0">dfgdfg</span>
@<span id=
"ListView1_userInfo1_0_LabelUserName_0">dfgdfg</span></td>
<td style="text-align: right"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><span style="font-size:10px">Follower-<span id=
"ListView1_userInfo1_0_LabelFollower_0">4578</span> ,
Following-<span id=
"ListView1_userInfo1_0_LabelFollowing_0">1654</span></span></td>
</tr>
<tr>
<td><span id="ListView1_userInfo1_0_LabelAbout_0"></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table><br />
</div>
<div style="background-color: #EEEEEE;color: #333333;">
<table style="width: 100%;">
<tbody>
<tr>
<td style="width: 71px"><img id="ListView1_userInfo_1_ImageUser_1" src=
"http://pbs.twimg.com/profile_images/12/ECWtACTn_normal.jpeg" style=
"height:65px;width:65px;" /></td>
<td style="vertical-align: top">
<table style="width: 100%;">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td>
<table style="width: 100%;">
<tbody>
<tr>
<td><img id="ListView1_userInfo_1_Imagebg_1" src=
"http://pbs.twimg.com/profile_background_images/37/pTBlAXSm.jpeg"
style="height:64px;width:251px;" /><br />
<span id="ListView1_userInfo_1_LabelName_1">dfgdfgd</span>
@<span id=
"ListView1_userInfo_1_LabelUserName_1">dfgdfgdf</span></td>
<td style="text-align: right"><input type="submit" name=
"ListView1$ctrl1$userInfo$ButtonFollow" value="Follow" id=
"ListView1_userInfo_1_ButtonFollow_1" style=
"height:100px;width:100px;" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td><span style="font-size:10px">Follower-<span id=
"ListView1_userInfo_1_LabelFollower_1">4622</span> ,
Following-<span id=
"ListView1_userInfo_1_LabelFollowing_1">4007</span></span></td>
</tr>
<tr>
<td><span id="ListView1_userInfo_1_LabelAbout_1"></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table><br />
</div>
</div>
我也按照评论者的建议查看了这篇文章jQuery: use filter(), but work with both results。
尝试了这个:
<script type="text/javascript">
$(document).ready(function () {
$.fn.invert = function () {
return this.end().not(this);
};
$("#ListView1_itemPlaceholderContainer table table table td").filter(function (index) {
if ($(this).html().indexOf('<input') > 0) {
return true;
}
}).invert().closest('div').css('background-color', 'red');
});
</script>
但这也会使所有行变红。
答案 0 :(得分:7)
$(document).ready(function () {
$("#ListView1_itemPlaceholderContainer table table table td").not(':has(input)').closest('div').css('background-color', 'red');
});
答案 1 :(得分:1)
我认为你应该接受阿伦的回答。问题是indexOf返回第一个匹配字符http://www.w3schools.com/jsref/jsref_indexof.asp的索引,在您的情况下它将为0,因此条件&gt; 0 不会申请。同样关于 == -1 着色所有行的问题,最好将你的函数应用于tr而不是td
您可以将功能更改为
$(document).ready(function () {
$("#ListView1_itemPlaceholderContainer table table table tr").filter(function (index) {
if ($(this).html().indexOf('<input') > -1) {
return true;
}
}).closest('div').css('background-color', 'red');
});
将输入的行标记为红色,或将条件反转为相反。或者更好 使用Arun建议的不同选择器。
用输入标记红色行的小提琴 http://jsfiddle.net/q9othg59/2/ 并且反对http://jsfiddle.net/q9othg59/4/