JS做Ajax页面跳转,捕获不到值为 空 的数据

PHP 做页面更新数据的时候,需要用到Ajax传值,但有时候不接受空数据 比如 参数(pc_img)

alert(pc_img); 弹出提示框undifined 。

F12利用控制台看Ajax返回的信息,在response中也显示的是 缺少参数pc_img。

解决办法:

$("#ID选择器").on('click', "#ID选择器",function(

    $.ajax({

      pc_img = $("#ID选择器").val();

       if(pc_img == "undifined") pc_img = "";

        dosomething

     });

));  

posted on 2018-09-07 14:29  刷哥  阅读(569)  评论(0编辑  收藏  举报

导航