jquery选取name属性的第11个字符为3的控件
------解决方案--------------------------------------------------------
用jquery的filter的方法
- JScript code
<script type="text/javascript"> $(function () { var $item = $("input").filter(function (index) { return $(this).attr("name").substring(10, 11) == "3"; }) alert($item.val()); }) </script>