|
本帖最后由 shugong 于 2013-9-6 18:12 编辑
CI新手求教
PHP复制代码 function car_check (){
$id = $this->input->get('id');
$da['carnum'] = $this->input->get('carnum');
$da['color'] = $this->input->get('color');
header("Content-Type:text/html;charset=gbk");
header("Cache-Control:no-cache");
$info="";
if($da['carnum'] == '')
{
$info= '{"res":" "}';
}
else{
$res = $this->Mgate->edit_car_by_id($id, $da);
if($res){
$info= '{"res":"已核对"}';
}
else{
$info= '{"res":"数据库出错"}';
}
}
echo $info;
} 复制代码
控制器
JS复制代码
function chuli(){
if(myXmlHttpRequest.readyState==4){
var mes=myXmlHttpRequest.responseText;
window.alert(mes);
}
} 复制代码
ajax
alertHTML代码怎么去除呢
|
|