jQuery enables the disabled button to prevent repeated submissions, layer.confirm determines that the button is locked to prevent repeated triggering events

<a class="btn btn-warning" id="releaseBtn" onclick="ShipPlanManager.release()">
 <i class="fa fa-pencil"></i> 计划下发
</a>
/**
 * 计划下发
 */
ShipPlanManager.release = function () {
 if (this.check()) {
     //禁用按钮
     $("#releaseBtn").attr("disabled", true);
     $("#releaseBtn").removeAttr("onclick");
     var data = $('#' + this.id).bootstrapTable('getSelections');
     var ids = "";
     for (var i = 0; i < data.length; i++) {
         ids = ids + data[i].id + ",";
     }
     ids = ids.substring(0, ids.length - 1);
     var lock = false;//默认未锁定
     parent.layer.confirm('是否确认下发?', {
         btn: ['确定', '取消'],
         shade: false, //不显示遮罩
     }, function () {
         if (!lock) {
             lock = true;
             var ajax = new $ax(Feng.ctxPath + "/shipplanmanager/release", function (data) {
                 Feng.success("计划下发成功!");
                 ShipPlanManager.table.refresh();
                 //启用按钮
                 $("#releaseBtn").removeAttr("disabled");
                 $("#releaseBtn").attr("onclick", "ShipPlanManager.release()");
             }, function (data) {
                 Feng.error("计划下发失败!" + data.responseJSON.message + "!");
                 $("#releaseBtn").removeAttr("disabled");
                 $("#releaseBtn").attr("onclick", "ShipPlanManager.release()");
             });
             ajax.set("ids", ids);
             ajax.start();
         }
     }, function () {
         $("#releaseBtn").removeAttr("disabled");
         $("#releaseBtn").attr("onclick", "ShipPlanManager.release()");
     })
 }
};
Published 59 original articles · won praise 20 · views 3638

Guess you like

Origin blog.csdn.net/qq_34896730/article/details/104165713