最后一行,我想选择input的name=c以外的标签怎么写呢?
基本筛选器
:first/:last/:even/:odd
div:first
:even
:odd
:even
:odd
:even
div:last
:odd
:eq/:gt/:lt
:lt(3)
:lt(3)
:eq(2)
:gt(3)
:gt(3)
:not
Aaron
天盟
其他
谢谢大神 |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
$("input:not(input[name=c])+p").css("background-color", "#CD00CD");
$("input:not(input:checked)+p").css("background-color", "#CD00CD");这样也行 选其一 |
|
|
|
|
复选框的名字就不相同呀,你也可以用ID呀,getElementsByID |
|
|
|
|
$("input").not(document.getElementsByName('c')).css("background-color", '#CD00CD');
checkbox加背景没效果的,所以这么写,将name不等于c的框设为选中
$("input").not(document.getElementsByName('c')).attr('checked',true); |
|
|
|
|