thinkcmfx 中如何用jquery ajax提交数据,自己尝试去做之后,还是没法提交,求助!

发布于 2022-09-03 12:16:01 字数 2591 浏览 15 评论 0

  <script src="__TMPL__Public/js/jquery-1.10.2.min.js" type="text/javascript"></script>
   <div class="form-group">
            <label for="exampleInputEmail1">*姓名</label>
            <input type="text" class="form-control"  placeholder="" id="name" value="{$data}">
          </div>
          <div class="form-group">
            <label for="exampleInputPassword1">*电话</label>
            <input type="password" class="form-control" id="exampleInputPassword1" placeholder="" id="tel">
          </div>
          <label for="exampleInputPassword1">*给我们留言</label>
          <textarea class="form-control" rows="3" id="msg"></textarea>
        
          <button type="button" class="btn btn-default js-ajax-submit" id="subMessage" data-wait="1500">提交留言</button>
    <script type="text/javascript">
    $(function(){
    
        $("#subMessage").click(function(){
            
            $.ajax({
                   url: "__URL__/postMessage",  
                   type: "POST",
                   data:{name:'name',tel:'tel',msg:'message'},//
                   //dataType: "json",
                   error: function(){  
                          alert('Error loading XML document');  
                   },  
                   success: function(data,status){//如果调用php成功    
                      alert(data);
                    //document.write(data);
                    /*if(data!=0)
                    {
                        jQuery.alerts.alert("提交成功!", "提示",function(){
                        window.parent.document.getElementById("layui-layer1").style.display="none";
                        window.parent.document.getElementById("layui-layer-shade1").style.display="none";
                        window.parent.location.href=window.parent.location.href;  
                        });
                    }*/
                   //alert(data);
                  }
              });     //ajax
            });
        
        });
    </script>
    

namespace PortalController;
use CommonControllerHomebaseController;
/**

  • 首页
    */

class IndexController extends HomebaseController {

function postMessage(){
//$this->ajaxReturn($_POST,'添加信息成功',1);
//$this->success("注册成功!",__ROOT__."/");
$data=$_POST["name"];
//echo $data;
return $data;

// $this->assign("name",$data);
// $this->display(":index");

}
}
    
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百善笑为先 2022-09-10 12:16:01

你ajax里的参数url写的不对吧,你那个__url__应该是一个变量,应该写成url: __URL__+"/postMessage", dataType参数不能注释
$.ajax({

url: __URL__+"/postMessage",  
type: "POST",
data:{name:'name',tel:'tel',msg:'message'},//
dataType: "json",
error: function(){  
    alert('Error loading XML document');  
},  
success: function(data,status){//如果调用php成功    
    alert(data);
}

});

超可爱的懒熊 2022-09-10 12:16:01

不这个 前端 写的有问题吧 form 标签都没有 还有input 要有name属性 不是ID

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文