-2
我如何关闭模态,而使用jQuery如何在使用jquery单击模式外部时关闭Modal?
$(document).ready(function() {
$("body").click(function (e) {
var x = e.pageX - e.target.offsetLeft;
var y = e.pageY - e.target.offsetTop;
if ((x < 75) || (x > 1275)) {
$('.modal-backdrop').fadeOut();
$('.modal').fadeOut("fast");
}
});
});