我正在尝试构建一个类似“windows”的应用程序,我希望用户能够加载多个页面。目前我有以下要求:
// Open the Profile Search Windows
$("#MainMenuProfileButton").click(function() {
$("#ProgramContent").load("forms/ProfileSearch.html",function() {
// Attach Event to the Profile Search Windows
$(".ProfileFormSearch").draggable({ handle: ".FormTopTitle" });;
});
});
但是,当我运行该命令两次时,它不会打开第二个窗口(或将 html 附加到现有窗口),而是重新加载同一个窗口......知道如何管理这个吗?
谢谢你