jquery奇数、偶数选择器
2021-02-14 14:20
标签:偶数 att 其他 用法 attr nbsp index 选择 元素 jquery :even选择器 选择每个相隔的(偶数)元素 :even 选择器选取每个带有偶数 index 值的元素(比如 2、4、6)。 index 值从 0 开始,所有第一个元素是偶数 (0)。 最常见的用法:与其他元素/选择器一起使用,来选择指定的组中偶数序号的元素 jquery :odd选择器 选择每个相隔的(奇数)元素 :odd选择器选取每个带有奇数 index 值的元素(比如 1、3、5)。 index 值从 0 开始,所有第一个元素是偶数 (0)。 比如: jquery奇数、偶数选择器 标签:偶数 att 其他 用法 attr nbsp index 选择 元素 原文地址:https://www.cnblogs.com/firstcsharp/p/12990966.html$("input[type=radio]:even").attr("checked", true);
$("input[type=radio]:odd").attr("checked", true);