Jquery - How to disable the entire page

后端 未结 8 2187
伪装坚强ぢ
伪装坚强ぢ 2020-12-05 19:31

I have this ajax event

function save_response_with_ajax(t){
  var form = $(\'#edit_\'+t);
  var div = $(\'#loading_\'+t);
  $.ajax({
    url: form.attr(\"act         


        
8条回答
  •  鱼传尺愫
    2020-12-05 20:03

    you can try

     $("body").append('
    ');

    then just use

    $("#overlay").remove();

    to get rid of it.

    quick & dirty.

提交回复
热议问题