因此,我希望我的用户能够点击一个简单的模式分类箱中的链接,并关闭目前的模式箱,打开一个有新内容的新箱。
至今尚未做到:
$( #search_dialog_link ).click(function () {
$("#search_dialog").modal(
{
position: [150,125],
minWidth: 400
}
);
});
$( #create_course_link ).click(function() {
$.modal.close();
$( #add_course_dialog ).modal(
{
position: [150,125],
minWidth: 400
}
);
});
如果有:
<div id="default-content">
This is the page where all of your classes and a list of upcoming assignments will be displayed.
Since you do not have any classes, why not try to add one by clicking the link below.<br><br>
<center><div id="search_dialog_link">+Add a Course</div></center>
</div>
</div>
<div id="search_dialog">
<p>Search for the teacher of your class:</p>
<form id="searchform"><input type="text" width="200px" size="30" value="" id="inputString" />
<div style="font-size: 10; position:relative; bottom:20px; left: 200px;">Dont see it?<div id="create_course_link">Create</div> a new class.</div>
</form>
</div>
<div id="add_course_dialog">
<p>Test</p>
</div>
注:psearch_dialog盒正确开张,用户点击div #create_course_link the original 运式箱末。 但新的模式箱没有显示。 我做了什么错误?