formresult_sel_field.tpl

来自「渣渣网络商店系统[ZZShop] V1.0」· TPL 代码 · 共 43 行

TPL
43
字号
<script language='javascript'>
<!--
	function checkValue()
	{
		var Obj = document.frmInfo;
		
		if(Obj.ShowField.selectedIndex == -1)
		{
			alert('请选择要查看的栏位');
			
			return false;
		}
		
		return true;
	}
//-->
</script>
<form action="{ACTION}" method='POST' name='frmInfo' onSubmit='return checkValue();'>
<table width="100%"  border="0" cellspacing="0" cellpadding=5 class=adminlist>
  <tr class='info_title'>
  	<td><strong>选择要查看的栏位</strong></td>
  </tr>
  <tr class='info_content'>
    <td>
    	<select name='ShowFields[]' multiple size=10 id='ShowField'>
    		{FieldList}
    	</select>
    </td>
  </tr>
  <tr>
  	<td>
  		<input type=radio name=csv value=1>是
  		<input type=radio name=csv value=0 checked>否
  	</td>
  </tr>
  <tr align="center" class='info_bottom'>
    <td>
		<input type="submit" value="送出">
		<input type="button" onClick='doCancle();' value="取消(C)" accesskey="c">
	</td>
  </tr>
</table>
</form>

⌨️ 快捷键说明

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