Chrome

时间:2017-10-22 16:55:01

标签: jquery ajax google-chrome

我想从选择框中选择任何选项时更新表格。我给了点击事件。除了chrome之外,它在每个浏览器中都能正常工作。

我从这里尝试了很多解决方案,但没有对我有用。

      $('.staty').click(function(){

        var imids = this.id;
        var ts=this.value;

        var con = confirm("Do you want to change the status?");
        if(con == true){
            ajax_img_edit('deletefiles.php', 'pesto=patos&sat_id='+imids + '&juggu=' + ts);

        }
    });
          });  
          function ajax_img_edit(url, data) {
    var a = $.ajax ({
        type        :   "post",
        data        :   data,
        url         :   url,
        cache       :   false,
        dataType    :   "html",
        async       :   false
    });
    return a.responseText;
}

          </script>

0 个答案:

没有答案