0

私は一度だけ動作するJSコードを持っていますjqxWindow:

$(document).ready(function () {
    $("#jqxwindow1 ").jqxWindow({ height: 800, width: 1212, maxWidth: 1600, maxHeight: 900, animationType: 'none', theme: 'fresh', autoOpen: false  });
    $("#jqxwindow2 ").jqxWindow({ height: 800, width: 1212, maxWidth: 1600, maxHeight: 900, animationType: 'none', theme: 'fresh', autoOpen: false  });
    $("#jqxwindow3 ").jqxWindow({ height: 800, width: 1212, maxWidth: 1600, maxHeight: 900, animationType: 'none', theme: 'fresh', autoOpen: false  });
    $("#jqxwindow4 ").jqxWindow({ height: 800, width: 1212, maxWidth: 1600, maxHeight: 900, animationType: 'none', theme: 'fresh', autoOpen: false  });
    $("#jqxwindow5 ").jqxWindow({ height: 800, width: 1212, maxWidth: 1600, maxHeight: 900, animationType: 'none', theme: 'fresh', autoOpen: false  });

$('div[id^="test"] p').click(function() {
    var string = "#jqxwindow" + $(this).text().split('|')[0];
    //alert("The window is opened : " + string);
    var opened = $(string).jqxWindow('isOpen');
    var action = 'close';
    if (opened == false)
        action = 'open';
        $(string).jqxWindow(action);
        $(string).jqxWindow('bringToFront');
    });
});

検索していましたが、すべての解決策がうまくいきませんでした。

ル:

キャッチされていない TypeError: $(...).jqxWindow は関数ではありません

オンライン

var opened = $(string).jqxWindow('isOpen');
4

1 に答える 1