?? field_add.php
字號:
<?php
defined('IN_PHPCMS') or exit('Access Denied');
include admintpl('header');
?>
<script language="JavaScript">
<!--
//檢驗文本框中內(nèi)容是否超長
function checktextarealength(val, max_length) {
var str_area=document.forms[0].elements[val].value;
if (str_area!=null&&str_area.length > max_length && document.myform.fieldtype.value!=2){
alert("文本文字超長,最多可輸入" + max_length +"個字符,請重新輸入!");
document.forms[0].elements[val].focus();
return false;
}
return true;
}
function fieldcheckform(FieldTypeValue){
if(FieldTypeValue=='3'){
trOptions.style.display='';
document.myform.defaultvalue.rows=1;
}else if(FieldTypeValue=='2'){
trOptions.style.display='none';
document.myform.defaultvalue.rows=10;
}else{
trOptions.style.display='none';
document.myform.defaultvalue.rows=1;
}
}
-->
</script>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
<tr>
<td ></td>
</tr>
</table>
<?=$menu?>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
<tr>
<td ></td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" class="tableborder">
<tr>
<th colspan=2>自定義字段添加</th>
</tr>
<form action="?mod=<?=$mod?>&file=field&action=add&channelid=<?=$channelid?>" method="post" name="myform">
<tr>
<td class="tablerow" width="30%"><strong>字段名稱</strong></td>
<td class="tablerow">
<input size=20 name="fieldname" type="text" maxlength='20' value="my_">
</td>
</tr>
<tr>
<td class="tablerow"><strong>字段標題</strong></td>
<td class="tablerow">
<input size=50 name="title" type="text">
</td>
</tr>
<tr>
<td class="tablerow"><strong>字段說明</strong></td>
<td class="tablerow">
<textarea name='note' rows='3' cols='50'></textarea>
</td>
</tr>
<tr>
<td class="tablerow"><strong>字段類型</strong></td>
<td class="tablerow">
<select name='fieldtype' onchange="javascript:fieldcheckform(this.options[this.selectedIndex].value)">
<option value='1' selected>單行文本</option>
<option value='2'>多行文本</option>
<option value='3'>下拉列表</option>
<option value='4'>數(shù)字</option>
<option value='5'>日期</option>
</select>
</td>
</tr>
<tr>
<td class='tablerow'><strong>默認值</strong></td>
<td class='tablerow'>
<textarea name='defaultvalue' rows='1' cols='50' onkeypress="javascript:checktextarealength('defaultvalue',30);"></textarea>
</td>
</tr>
<tr id='trOptions' style='display:none'>
<td class='tablerow'><strong>列表項目:</strong><br>每一行為一個列表項目</td>
<td class='tablerow'><textarea name='options' cols='40' rows='3' id='options'></textarea></td>
</tr>
<tr>
<td class='tablerow'><strong>是否必填</strong></td>
<td class='tablerow'>
<input type='radio' name='enablenull' value='0'> 是
<input type='radio' name='enablenull' value='1' checked> 否
</td>
</tr>
<tr>
<td class="tablerow"><strong>是否作為搜索條件</strong></td>
<td class="tablerow">
<input type='radio' name='enablesearch' value='1'> 是
<input type='radio' name='enablesearch' value='0' checked> 否
</td>
</tr>
<tr>
<td class="tablerow"></td>
<td class="tablerow"> <input type="Submit" name="submit" value=" 確定 ">
<input type="reset" name="reset" value=" 清除 "> </td>
</tr>
</form>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -