Jqm Modal在IE 9中没有间歇性打开

时间:2014-02-13 13:22:58

标签: javascript jquery jqgrid jqmodal

Jqm Modal似乎在所有浏览器中都运行良好。但是,有时它会在IE 9中出现错误 Error while opening jqm modal

以下是打开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的代码。

1 个答案:

答案 0 :(得分:0)

您使用的是什么版本的jqModal?我最近重写了插件并发布了R17。

另外,我不建议在点击处理程序中重新初始化模态元素。试试像;

$('a.AddDocumentTrigger').live('click', function (e) {
    e.preventDefault();      
    $('#AddDocumentModal').jqmShow();
    return false;
});