适用范围
- 全站任意地方均可使用
标签作用
- 用于用户提交留言和调取留言记录
1. 留言提交表单
html<form action="{pboot:msgaction}" method="post">
联系人:<input type="text" name="contacts" >
手机:<input type="text" name="mobile" >
内容:<input type="text" name="content" >
验证码:<input type="text" name="checkcode" ><img title="点击刷新" src="{pboot:checkcode}" onclick="this.src='{pboot:checkcode}?'+Math.round(Math.random()*10);" />
<button type="submit">提交</button>
</form>
- 表单提交方式:
post
- 表单中提交的字段名称:需要与后台自定义表单中添加的字段一致,否则会导致提交失败。
- 需要更多字段:请在后台自定义表单中新增留言表单字段,然后再在前台新增form字段。
标签说明
{pboot:msgaction}
:留言表单接收地址{pboot:checkcode}
:验证码图片地址