摘要:
//ID元素下的所有input,并设置为不可用$("input",$("#id")).attr("disabled",true);//设置name为test的checkbox是否为选中状态。返回值为true|false$("input[name='test']").attr("checked");//下拉列表值改变时触发$(document).ready(function(){$("select").change(function(){alert($(this 阅读全文