You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.8 KiB
Plaintext
46 lines
1.8 KiB
Plaintext
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
<c:set var="path" value="${pageContext.request.contextPath}"/>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<link rel="stylesheet" href="${path}/static/js/jquery-confirm.min.css">
|
|
<script src="${path}/static/js/jquery-confirm.min.js"></script>
|
|
<input type="hidden" id="common_confirm_btn" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#common_confirm_model">
|
|
<div id="common_confirm_model" class="modal" style="z-index: 99999">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
|
<h5 class="modal-title"><i class="fa fa-exclamation-circle"></i> <span class="title"></span></h5>
|
|
</div>
|
|
<div class="modal-body small">
|
|
<p ><span class="message"></span></p>
|
|
</div>
|
|
<div class="modal-footer" >
|
|
<button type="button" class="btn btn-primary ok" data-dismiss="modal">确认</button>
|
|
<button type="button" class="btn btn-default cancel" data-dismiss="modal">取消</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var Common = {
|
|
confirm:function(params){
|
|
var model = $("#common_confirm_model");
|
|
model.find(".title").html(params.title)
|
|
model.find(".message").html(params.message)
|
|
|
|
$("#common_confirm_btn").click()
|
|
//每次都将监听先关闭,防止多次监听发生,确保只有一次监听
|
|
model.find(".cancel").off("click")
|
|
model.find(".ok").off("click")
|
|
|
|
model.find(".ok").on("click",function(){
|
|
params.operate(true)
|
|
})
|
|
|
|
model.find(".cancel").on("click",function(){
|
|
params.operate(false)
|
|
})
|
|
}
|
|
}
|
|
</script>
|