/*查询id以code开头的input标签*/
$("input[id^=‘code‘]");
/*查询id以code结尾的input标签*/
$("input[id$=‘code‘]");
/*查询id包含code的input标签*/
$("input[id*=‘code‘]");
//表格奇偶选择
$("tbody tr:even"); //选择索引为偶数的所有tr标签
$("tbody tr:odd"); //选择索引为奇数的所有tr标签
Posted ぃSolitary_boy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery选择器通配符相关的知识,希望对你有一定的参考价值。
/*查询id以code开头的input标签*/
$("input[id^=‘code‘]");
/*查询id以code结尾的input标签*/
$("input[id$=‘code‘]");
/*查询id包含code的input标签*/
$("input[id*=‘code‘]");
//表格奇偶选择
$("tbody tr:even"); //选择索引为偶数的所有tr标签
$("tbody tr:odd"); //选择索引为奇数的所有tr标签
以上是关于jquery选择器通配符的主要内容,如果未能解决你的问题,请参考以下文章