thinkcmfx 中如何用jquery ajax提交数据,自己尝试去做之后,还是没法提交,求助!
<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=""> </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>
namespace PortalController;
use CommonControllerHomebaseController;
/**
首页
*/
class IndexController extends HomebaseController {
<code>function postMessage(){ //$this->ajaxReturn($_POST,'添加信息成功',1); //$this->success("注册成功!",__ROOT__."/"); $data=$_POST["name"]; //echo $data; return $data;</code>
// $this->assign("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=""> </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>
namespace PortalController;
use CommonControllerHomebaseController;
/**
首页
*/
class IndexController extends HomebaseController {
<code>function postMessage(){ //$this->ajaxReturn($_POST,'添加信息成功',1); //$this->success("注册成功!",__ROOT__."/"); $data=$_POST["name"]; //echo $data; return $data;</code>
// $this->assign("name",$data);
// $this->display(":index");
<code>} } </code>
你ajax里的参数url写的不对吧,你那个__url__应该是一个变量,应该写成url: __URL__+"/postMessage", dataType参数不能注释
$.ajax({
<code>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); }</code>
});

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu
