Jqm Modal似乎在所有浏览器中都运行良好。但是,有时它会在IE 9中出现错误
以下是打开jqm Modal
的代码 $('#AddDocumentModal').jqm({
ajax: '@href',
modal: false,
overlay: 80,
toTop: true,
target: false,
cache:false
});
$('a.AddDocumentTrigger').live('click', function (e) {
e.preventDefault();
$('#AddDocumentModal').jqm({
ajax: this.href
});
$('#AddDocumentModal').jqmShow(this);
return false;
});
jquery.jqGrid.src.js包含Jqm Modal的代码。
答案 0 :(得分:0)
您使用的是什么版本的jqModal?我最近重写了插件并发布了R17。
另外,我不建议在点击处理程序中重新初始化模态元素。试试像;
$('a.AddDocumentTrigger').live('click', function (e) {
e.preventDefault();
$('#AddDocumentModal').jqmShow();
return false;
});