zoukankan      html  css  js  c++  java
  • loading等待效果

    效果预览:这两个球一直在转,不能进行其他操作

    div放在最外层

    <div id="loadingImg" style="height: 100%; 100%;background-image: url('img/uploading.gif');background-position: center; position: fixed;top: 1px;background-repeat: no-repeat;background-color:#FFFFFF;filter:alpha(opacity=80); -moz-opacity:0.80; opacity:0.80;display: none;z-index: 9999 "></div>

    easyui操作

    $.messager.confirm("提示","你确定要删除吗?", function (r) {
             if (r) {
                 parent.window.$("#loadingImg").css("display","");//显示上边的div效果
                 $.ajax({
                     url : '/xxxx/sg/delSpecialguardInfo',
                     data : {'ids':id},
                     type : 'POST',
                     dataType : 'json',
                     success : function() {
                         parent.window.$("#loadingImg").css("display","none");//成功后隐藏
                         $('#tt').datagrid('reload');
                         clearSelections();
                         $.messager.alert("提示", "操作成功", "success");
                     }
                 });
             }
         });
  • 相关阅读:
    矩形覆盖
    跳台阶与变态跳台阶
    有几个PAT【*】
    找零钱
    有理数的四则运算
    旧键盘打字
    查验身份证
    完美数列【置顶】
    旧键盘
    超简单webservice实例
  • 原文地址:https://www.cnblogs.com/yunqing/p/7274767.html
Copyright © 2011-2022 走看看