JS表格排序

(function($){
	//插件
	$.extend($,{
		//命名空间
		sortTable:{
			sort:function(tableId,Idx){
				var table = document.getElementById(tableId);
				var tbody = table.tBodies[0];
				var tr = tbody.rows; 
		
				var trValue = new Array();
				for (var i=0; i






自定义表格排序(JS)






会员ID 会员名 邮箱 会员组 城市 注册时间
126 webw3c [email protected] 普通会员 北京 2011-04-13
145 test001 [email protected] 中级会员 合肥 2011-03-27
116 wuliao [email protected] 普通会员 南昌 2011-04-01
129 tired [email protected] 中级会员 北京 2011-04-06
155 tiredso [email protected] 中级会员 武汉 2011-04-06
131 javascript [email protected] 中级会员 武汉 2011-04-08
132 jQuery [email protected] 高级会员 北京 2011-04-12


你可能感兴趣的:(JS表格排序)