doujie7886 2011-09-07 15:41
浏览 73
已采纳

jquery ajax成功没有显示数据

I have a simple form that passes values to php using serialize. Now what I am trying to do is, when the values are passed to php for processing, display a message to the user based on wether there is any data or if the values are empty. I can get the message to display by not doing the checks and having just echo value say 1 for success. Is there a way to display the echo of the php to the user using my code. Thanks

data: send,
      success: function (data) {
      if (data == ''){
      $('#brtv-result').addClass("result_msg").html(data).show(1000).delay(4000).fadeOut(3000);
      }


if(empty($service) {

echo 'You must select a service level';
}

else
if ($department == "Choose Department"} {

echo 'Please select a department';
}

else
if (empty($authorised)) {

echo 'You must enter an authorised name';
}

else
if ($address == "Choose Address") {

echo 'Please select a retireval address';
}

else
if (empty($boxnumber)) {

echo 'You must enter a box number to retrieve';
}
else
{
echo $boxnumber;
}
  • 写回答

2条回答 默认 最新

      报告相同问题?

      相关推荐 更多相似问题

      悬赏问题

      • ¥15 Metabase二次开发
      • ¥20 关于mmap将物理空间映射到用户空间再落盘时使用O_DIRECT方式会提示bad address的问题如何解决?
      • ¥15 无人机px4下载环境编译出错,如何解决?
      • ¥15 一个python问题
      • ¥15 您好,请问您的那个pcap转成pcd文件的matlab代码我下载了运行没问题,也生成了点云图,但是无法存储pcd文件,请问怎么保存导出pcd文件呀
      • ¥260 已有标注好的图像数据集,如何构建深度卷积网络训练分类
      • ¥20 matlab图像错误
      • ¥30 如何写通过uni.uploadFile上传图片到ASP后端接收的代码
      • ¥15 selenium模糊定位
      • ¥15 硬件断点的问题,真的被整无语了