jQuery表格顶部与左右两侧固定滚动代码

jQuery表格顶部与左右两侧固定滚动代码-精品资源网
jQuery表格顶部与左右两侧固定滚动代码
此内容为免费资源,请登录后查看
0
免费资源

jQuery表格顶部与左右两侧固定滚动代码

jQuery表格顶部与左右两侧固定滚动代码是一款左右两侧固定列,中间内容可以横向拖动,固定表头,可以横向拖动的表格插件代码。

js代码

<script src=\"js/fixed-table.js\"></script>
<script>
	//初始化FixedTable
	$(\".fixed-table-box\").fixedTable();

	//清空表格
	$(\"#empty_data\").on(\"click\", function (){
		$(\".fixed-table-box\").emptyTable();
	});
	//添加数据
	$(\"#add_data\").on(\"click\", function (){
		$(\".fixed-table-box\").addRow(function (){
			var html = \'\';
			for(var i = 0; i < 5; i ++){
				html += \'<tr>\';
				html += \'    <td class=\"w-150\"><div class=\"table-cell\"> 2016-05-03</div></td>\';
				html += \'    <td class=\"w-120\"><div class=\"table-cell\">王小虎</div></td>\';
				html += \'    <td class=\"w-120\"><div class=\"table-cell\">上海</div></td>\';
				html += \'    <td class=\"w-120\"><div class=\"table-cell\">普陀区</div></td>\';
				html += \'    <td class=\"w-300\"><div class=\"table-cell\">上海市普陀区金沙江路 1518 路</div></td>\';
				html += \'    <td class=\"w-120\"><div class=\"table-cell\">200333</div></td>\';
				html += \'    <td class=\"w-100\">\';
				html += \'        <div class=\"table-cell\">\';
				html += \'            <a href=\"###\">查看</a>\';
				html += \'            <a href=\"###\">编辑</a>\';
				html += \'        </div>\';
				html += \'    </td>\';
				html += \'</tr>\';
			}
			return html;
		});
	});
	//删除指定行
	$(\"#del_row\").on(\"click\", function (){
		$(\".fixed-table-box\").deleteRow($(\".fixed-table-box\").children(\'.fixed-table_fixed-left\').children(\'.fixed-table_body-wraper\').find(\'tr\').eq(0));
	});
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容