@qingjieshouliang
Current Path : /www/wwwroot/eblliwsm.com/c8efb1c6/Tpl/Download/ |
Current File : /www/wwwroot/eblliwsm.com/c8efb1c6/Tpl/Download/add.html |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <load href="../Public/css/index.css"/> <load href="../Public/js/quickView.js"/> <title>添加下载</title> <include file='Public:kinde'/> <SCRIPT language=javaScript> function CheckJob() { if (document.myform.name.value.length==""){ alert ("下载名称不能为空!"); document.myform.name.focus(); return false; } if (document.myform.title.value.length==""){ alert ("SEO标题不能为空!"); document.myform.title.focus(); return false; } var number = document.getElementById('sort').value; var reg = /^\d+$/; if (!number.match(reg)){ alert ("排序号必须为数字!"); document.myform.sort.focus(); return false; } } </SCRIPT> </head> <body> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="LineRightBlue1"> <table width="95%" border="0" cellpadding="0" cellspacing="0" style="margin-left:20px;"> <tr> <td width="88%" height="24">添加下载 【<a href="<{:U('Download/index')}>">返回下载列表</a>】</td> <td width="12%" align="right" class="bt_add"></td> </tr> </table> </td> </tr> </table> <form action="<{:U('savedown')}>" method="post" name="myform" id="myform" enctype="multipart/form-data" onSubmit="return CheckJob()"> <DIV class="PageContent"> <table width="98%" border="0" style="margin:20px;" class="ListCategory"> <tr> <td width="9%">下载名称:</td> <td width="91%" height="35"><input name="name" type="text" class="FormSmall" style="width: 320px;"> <span style="color:#F00; font-size:12px;">*必填</span> </td> </tr> <tr> <td>下载分类:</td> <td height="35"> <select name="pid" style="height:28px;"> <volist name='list' id='vo'> <option value="<{$vo.id}>"><{$vo.html}><if condition='$vo.level gt 0'>┕</if><{$vo.name}></option> </volist> </select> </td> </tr> <tr> <td>排序ID:</td> <td height="35"><input name="sort" id="sort" value="0" type="text" class="FormSmall" style="width: 50px;"> <span style="color:#F00; font-size:12px;">*必填</span><a title='只可填数字,数字越小排序越靠前。'style="margin-left: 5px;" href="#"><img src="../Public/images/help.gif"></a></td> </tr> <tr> <td>URL优化:</td> <td height="35"><input name="url" type="text" class="FormSmall" style="width: 320px;"> <a title='URL只能是字母,数字,下划线或-'style="margin-left: 5px;" href="#"><img src="../Public/images/help.gif"></a></td> </tr> <tr> <td width="9%">SEO标题:</td> <td width="91%" height="35"><input name="title" type="text" class="FormSmall" style="width: 320px;"> <span style="color:#F00; font-size:12px;">*必填</span> </td> </tr> <tr> <td>SEO关键字:</td> <td height="35"><input name="keywords" type="text" class="FormSmall" style="width: 320px;"></td> </tr> <tr> <td>SEO描述:</td> <td height="110"><textarea name="description" class="FormSmall" style="width: 450px; height: 80px;"></textarea> </td> </tr> <tr> <td width="9%">上传文件:</td> <td width="91%" height="35"><input type='file' name='filename'></td> </tr> <tr> <td>下载详细:</td> <td> <textarea name="contents" style="width:680px; height:320px; margin:8px 0;visibility:hidden;"></textarea> </td> </tr> <tr> <td height="55" align="center"> </td> <td height="55" align="left"> <input type="submit" value="提交" class="bginput"> <input name="reset" type="reset" class="bginput" value="重置" /> </td> </tr> </table> </DIV> </form> </body> </html>