디..."/> 디...">

 >  기사  >  백엔드 개발  >  thinkcmfx에서 jquery ajax를 사용하여 데이터를 제출하는 방법을 직접 시도했지만 여전히 제출할 수 없습니다.

thinkcmfx에서 jquery ajax를 사용하여 데이터를 제출하는 방법을 직접 시도했지만 여전히 제출할 수 없습니다.

WBOY
WBOY원래의
2016-08-18 09:15:501284검색

<code>  <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>
    </code>

네임스페이스 PortalController;
CommonControllerHomebaseController를 사용합니다.
/**


  • */

IndexController 클래스는 HomebaseController를 확장합니다. {

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

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

<code>}
}
    
    </code>

回复内容:

<code>  <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>
    </code>

네임스페이스 PortalController;
CommonControllerHomebaseController를 사용합니다.
/**


  • */

IndexController 클래스는 HomebaseController를 확장합니다. {

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

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

<code>}
}
    
    </code>


});

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.