English 中文(简体)
Click Link in brief Format to open new brief range
原标题:Click Link in simple modal to open new simple modal

因此,我希望我的用户能够点击一个简单的模式分类箱中的链接,并关闭目前的模式箱,打开一个有新内容的新箱。

至今尚未做到:

$( #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 运式箱末。 但新的模式箱没有显示。 我做了什么错误?

最佳回答

有一种“bug”和“1.4.1”可能会引起这一问题。 为了确定操作问题,在密切职能中有定时电话。

为开展这些工作,您可更新以下法典:

$( #create_course_link ).click(function() {
   $.modal.close();

   setTimeout(function () {
      $( #add_course_dialog ).modal(
      {
       position: [150,125],
       minWidth: 400
      }
      );
   }, 20);
});
问题回答

既然Erics回答是他自己发展的。 HOWEVER, 这将使简单的模式消失,并打开新的模式。 这可能是不可取的。

我很早就利用了简单的Modal,因为我是一位心脏的建筑师(我不认为自己是方案家,而是能够把2 &、2人放在一起)。

围绕它开展工作,创造全球变量和全球阵列。 将全球变量作为屏幕和全球阵列的点子,作为“超支”的内容。 这样,你就能够回去,第四步,而无需关闭。

这是我在Claper的早期进行筛选(转而去)。 我用帕斯卡尔方案规划(即我是一名帕斯卡尔方案管理员......但放弃了该方案)。

参看:。 它属于葡萄牙语,但你不应有麻烦。

Good luck!

这似乎以简单的模式1.4.2确定,我建议升级。





相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签