新建一个页面
在Controller里面建一个对应的XxxControll.class.php
XxxControll.class.php:index()
在Controller里面建一个对应的XxxControll.class.php
XxxControll.class.php:index()
在View里面建一个Xxx文件夹,在Xxx文件夹里面建一个index.html页面
刷新DIV:div ID=‘p’
function submitForm() {
$('#ff').form('submit', {
success : function(data) {
///window.location= 'index.php';
$.ajax({
type:"post",
url:"http://localhost/host/m/index.php/Home/data",
success:function(msg){
$("#p").html(msg);
},
error:function(){
alert("wrong");
}
});
}
});
}
调试:
$info = '测试信息';
trace($info,'提示');
$Blog = D("user");
$blog = $Blog->select();
dump($blog);
echo $Blog->_sql();