info_poll_value.tpl

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

TPL
44
字号
<script language='javascript'>
<!--
	function checkValue()
	{
		var Obj = document.all.frmInfo;
		
		if(!Obj.Value.value)
		{
			Obj.Value.focus();
			
			return false;
		}
		
		return true;
	}
//-->
</script>
<form action='{ACTION}' method='POST' enctype="multipart/form-data" name='frmInfo' onSubmit='return checkValue();'>
<table width="100%"  border="0" style='word-break:break-all' cellspacing=0 cellpadding=5 class=adminform>
  <tr>
    <td colspan="3" class='info_title'><strong>添加/修改 投票选项</strong></td>
  </tr>
  <tr class='info_content'>
      <td width="100">选项名称:</td>
      <td>
        <input name="Value" type="text" value="{Value}" size=30>
	  </td>
      <td width="150">选项值(*)</td>
  </tr>
  <tr class='info_bottom'>
    <td colspan="3" align="center" class="info_bottom">
		<input type="submit" value="{Caption}">
    	<input name="btnSubmit" type="hidden" value=1>
    	<input name="ids" type="hidden" value='{PollID}'>
    	<input type="button" accesskey='c' value="取消(C)" onClick='doCancle();'></td>
    </tr>
</table>
</form>
<script language='javascript'>
<!--
	document.all.Value.focus();
//-->
</script>

⌨️ 快捷键说明

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