我有关于模态的浏览器问题。它只是不适用于IE 11,但使用firefox和chrome工作得很好。
var chref = $(this).attr('href');
$('div#tb_modal_confirm_attachment').modal();
$('#tb_modal_confirm_attachment .modal-footer .btn').click (function () {
if ($(this).attr('id') == 'confirm_yes') {
location.href = chref;
}
});
return false;