下载帮

您现在的位置是:首页 > CMS教程 > 织梦CMS

织梦CMS

织梦自定义表单怎么制作在线订单

2020-01-06 05:45织梦CMS

织梦自定义表单怎么制作在线订单?

织梦自定义表单制作在线订单详细解说

第一步首先你要知道自定义表单的后台界面在哪里截图

aea2195e5e519b06ef744a59f1dcc2e.png

第二步添加自定义表单

302d013a6570ef56dd0325e71b7adae.png

我选择完全公开就是说访客提交的时候他们也是可以看到我们的自定义信息的 数据表 模板根据你的模板自定义即可

我们先look下

106dbce619e8c693f66fc1e4077e41b.png

下面就是自定义的内容了

我随便举例给大家演示下 首先返回界面

e57b4f45472d22d387ae7e5b014e5e2.png

点击红圈来添加我们的自定义表单

8eeeaec176a2cf5b30807ee9f0d3da3.png

添加自定义字段

我添加了三个自定义字段分别是

783653f0c29ed70b130ed27e5e3cbc2.png

下面预览下我们的效果

b3bd6dd52e064e6d34c3e8c55044418.png

注意你添加的时候根据你的需要选择 对应的 数据类型即可

这样自定义就基本完成了下面就是用代码直接放置到你的对应模板

这里给大家一个技巧 一般自定义的用你的单页面模板修改即可

我的例子代码是:

<form action="/plus/diy.php" enctype="multipart/form-data" method="post">
<input type="hidden" name="action" value="post" />
<input type="hidden" name="diyid" value="1" />
<input type="hidden" name="do" value="2" />
<table style="width:97%;" cellpadding="0" cellspacing="1">
<tr>
  <td align="right" valign="top">招聘:</td>
  <td><input type='text' name='zhaopin' id='zhaopin' style='width:250px'  class='intxt' value='' />
</td>
</tr>
<tr>
  <td align="right" valign="top">招聘头像:</td>
  <td><input type='file' name='touxiang' id='touxiang' style='width:300px;height:22px;line-height:22px' />
</td>
</tr>
<tr>
  <td align="right" valign="top">阅历:</td>
  <td><textarea name="yueli" rows="8" cols="60"></textarea>
<script type="text/javascript">//<![CDATA[
window.CKEDITOR_BASEPATH='/include/ckeditor/';
//]]></script>
<script type="text/javascript" src="/include/ckeditor/ckeditor.js?t=B8DJ5M3"></script>
<script type="text/javascript">//<![CDATA[
CKEDITOR.replace('yueli', {"extraPlugins":"dedepage,multipic,addon","toolbar":[["Source","-"],["Cut","Copy","Paste","PasteText","PasteFromWord","-","Print"],["Undo","Redo","-","Find","Replace","-","SelectAll","RemoveFormat"],["Bold","Italic","Underline","Strike","-"],["Table","HorizontalRule"],["Link","Unlink","Image","Anchor"],["Styles","Format","Font","FontSize"],["TextColor","BGColor"]],"height":350,"skin":"kama"});
//]]></script>
</td>
</tr>
<input type="hidden" name="dede_fields" value="zhaopin,text;touxiang,img;yueli,htmltext" />
<input type="hidden" name="dede_fieldshash" value="b4e15b5fd31e75fbe8712b4bf0dd7155" /></table>
<div align='center' style='height:30px;padding-top:10px;'>
<input type="submit" name="submit" value="提 交" class='coolbg' />
<input type="reset" name="reset" value="重 置" class='coolbg' />
</div>
</form>

简单的办法直接复制你发布页面自定义表单的源代码里找 <form> </form> 之间的部分即可

我用织梦默认单页面测试截图

1fb692f82e43ec0bf20bf0225837315.png

测试内容发布截图

12fadc7277f7cd6ce5a8f1e5c235eaf.png

以上就是织梦自定义表单怎么制作在线订单的详细内容,更多请关注下载帮php中文频道其它相关文章!

文章评论