资料:
(1)CSS 选择器参考手册
http://www.w3school.com.cn/cssref/css_selectors.asp
比如我想找到一个标签名为“input”、name为“sex”、value为“0”、type为“radio”的一个jq对象,如下:
<script> var $radio = $('input [name="sex"][value="0"][type="radio"]'); if($radio){ $radio.attr("checked", true); } </script>