修改表格的小样式
$("table a").click(function(){
// var otr = $(this).parent('td').parent('tr');
var otr =$(this).parents('tr');
var info='';
otr.children('td').each(function(i){
if(i<otr.children('td').length-1)
info+=$(this).html()+" ";
});
$('#showinfo').html(info);
});
常用的一些按钮设置
function chkall(){
$("#div2 > :checkbox").prop('checked', true);
}
function chkno(){
$("#div2 > :checkbox").prop('checked', false);
}
function chkreverse(){
$("#div2 > :checkbox").each(function(i){
this.checked = !this.checked;
});
}
function getformelement(){
// :input 能够获取全部的表单项的集合
// alert($(":input").length);
// alert($(":text").length);
// :button 只匹配普通按钮,不匹配提交按钮和重置按钮
// alert($(":button").length);
}