*姓名
*电话
*给我们留言
提交留言
$(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
});
});
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");
}
}
PHP留言提交:后台处理与前端验证
本文档介绍了如何使用PHP实现一个网站的留言功能,包括用户输入姓名、电话和留言内容,通过AJAX发送到服务器进行处理,并返回响应。重点展示了数据验证和后端控制器的实现方法。

被折叠的 条评论
为什么被折叠?



