⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tablelist.js

📁 java网页开发的东西自己编辑写的大家可以讨论下
💻 JS
字号:


// structure that describes visual aspects of the table
var TABLE_LOOK0 = {
	'params' : [3, 1], // [cellpadding,cellspacing]
  	'colors' : ['white', '#DBEAF5'], // background colors for [even,odd,mouseovered,marked] rows
 	'freeze' : [0, 0], // how many rows to skip [at_the_top, at_the_bottom] when applying effects
	'paging' : [
		15, // page size (0 - no paging)
		'<img src=/laconic/img/first.gif border=0 alt="first page">', // html for first page link
		'<img src=/laconic/img/prev.gif border=0 alt="previous page">',  // html for previous page link
		'<img src=/laconic/img/next.gif border=0 alt="next page">', // html for next page link
		'<img src=/laconic/img/last.gif border=0 alt="last page">' // html for last page link
	],
	'sorting' : [
		'<img src=/laconic/img/asc.gif border=0 height=4 width=8 alt="sort descending">', // html for ascending sorted state icon (text)
		'<img src=/laconic/img/desc.gif border=0 height=4 width=8 alt="sort ascending">', // html for descending sorted state icon (text)
		'<img src=/laconic/img/asds.gif border=0 height=9 width=8 alt="sort ascending">'  // html for unsorted state icon (text)
	],
  	'filter' : 3 // filter 0 - off, 1 - substring, 2 - match, 4 - regexp filter (e.g. 1+2+4 means all filters on)
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -