我试图使用带有id的jQuery打开一个模态窗口。
我的代码:
function PopUpWindow(popup) {
var remote = "<iframe width='100%' height='90%' style='border:none; ' src='" + popup + "' ></iframe>"; // popup// $jq191(this).data('href');
//alert($('#modalC .modal-body').html() );
e = 'click';
$('#modalC .modal-body').html(remote);
$('#modalC').modal('show');
// alert($('#modalC .modal-body').html());
//alert('Hi ');
e.preventDefault();
return false;
}
window.closeModal = function () {
$('#modalC').modal('hide');
};
此代码在$('#modalC').modal('show');
之前就可以了,但之后没有。