您的需求

您的需求是什么?

简单四步,轻松做网站

1

域名注册 主机/服务器购买

代注册账号,代购买域名和主机/服务器

3

网站开发设计

原创的网站设计,不仅能让您的网站大气漂亮,具有**性,还更利于搜索优化推广

4

网站上线

网站正式上线,提供完善的售后服务。

网站教程 SEO优化 网站建设 网站设计 广州网站建设
当前位置:首页>文章>网站教程
PbootCms 使用Ajax无刷新提交留言及表单
所属栏目:网站教程 发布日期:2021-10-24

PbootCMS本身对于使用ajax请求进行提交时会返回Json数据,那么我们可以无需使用API的情况下实现ajax提交留言,并自定义页面提示,提升用户体验。

1、留言表单

<form onsubmit="return submsg(this);">
    联系人<input type="text" name="contacts" required id="contacts">
    手 机<input type="text" name="mobile" required id="mobile">
    内 容<textarea name="content" id="content"></textarea>
    验证码<input type="text" name="checkcode" required id="checkcode">
    <img title="点击刷新" src="{pboot:checkcode}" onclick="this.src='{pboot:checkcode}?'+Math.round(Math.random()*10);" />
    <button type="submit">提交留言</button></form>


2、Ajax提交

<script>

//ajax提交留言,由于涉及到提交地址标签的解析,JS需要放在html文件中
function submsg(obj){
  var url='{pboot:msgaction}'; //如果是自定义表单则使用地址{pboot:form fcode=*}
  var contacts=$(obj).find("#contacts").val();
  var mobile=$(obj).find("#mobile").val();
  var content=$(obj).find("#content").val();
  var checkcode=$(obj).find("#checkcode").val();
  
  $.ajax({
    type: 'POST',
    url: url,
    dataType: 'json',
    data: {
        contacts: contacts,        mobile: mobile,        content: content,        checkcode: checkcode    },
    success: function (response, status) {
      if(response.code){
         alert("谢谢您的反馈,我们会尽快联系您!");
         $(obj)[0].reset(); 
      }else{
         alert(response.data);
      }
    },
    error:function(xhr,status,error){
      alert('返回数据异常!');
    }
  });
  return false;}</script>



免费通话

24小时免费咨询

请输入您的联系电话,座机请加区号

电话

微信扫一扫

微信
顶部