📄 list_table.tpl
字号:
<script language='javascript'>
<!--
function repairTable()
{
doSomethings('repair');
}
function optimizeTable()
{
doSomethings('optimize');
}
function checkTable()
{
doSomethings('check');
}
function analyseTable()
{
doSomethings('analyse');
}
//-->
</script>
<form action="{ACTION}" method="post" name='frmInfo'>
<table width="100%" border="0" cellspacing=0 class='adminlist' cellpadding="3">
<tr class='list_title'>
<th width="30"><a onClick='reverseCheck(frmInfo.sid);'><strong>选</strong></a></th>
<th>{Name}</th>
<th width=60>{Type}</th>
<th width=60>{Rows}</th>
<th width=80>{Data_length}</th>
<th width=80>{Index_length}</th>
<th width=80>{Data_free}</th>
<th width=100>操作</th>
</tr>
<!-- beginRow TableList -->
<tr align="center" class='info_content' onClick='select_thisrow(this);' onmouseover='highlightrow2(this, true);' onmouseout='highlightrow2(this, false);'>
<td><input onClick='highlight_row(this);' type="checkbox" name="ids[]" id='sid' value='{TableList.Name}'></td>
<td align=left>{TableList.Name}</td>
<td>{TableList.Type}</td>
<td>{TableList.Rows}</td>
<td>{TableList.Data_length}</td>
<td>{TableList.Index_length}</td>
<td>{TableList.Data_free}</td>
<td>
<input type="button" onClick='doSomething("check", "{TableList.Name}");' value="检查">
<input type="button" onClick='doSomething("repair", "{TableList.Name}");' value="修复">
<br>
<input type="button" onClick='doSomething("analyse", "{TableList.Name}");' value="分析">
<input type="button" onClick='doSomething("optimize", "{TableList.Name}");' value="优化">
</td>
</tr>
<!-- endRow TableList -->
<tr align="right" class='info_bottom'>
<td colspan="8">
<input type="button" onClick='doSomethings("check");' value="检查选定">
<input type="button" onClick='doSomethings("repair");' value="修复选定">
<input type="button" onClick='doSomethings("optimize");' value="优化选定">
<input type="button" onClick='doSomethings("analyse");' value="分析选定">
</td>
</tr>
</table>
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -