English 中文(简体)
任何人都能够告诉我,一个 j铁丝网dia子图书馆(封闭式)
原标题:Can anyone tell me about a jQuery modal dialog box library that doesn t suck [closed]

我们不准许对书籍、工具、软件图书馆以及更多的图书馆征求建议的问题。 你可以ed问这个问题,以便用事实和引言回答。

Closed 2 years ago.

j 只要你能像你这样告诉你,基干式方言箱就非常大。 我需要一个基于“质量”的示范方言图书馆,它必须具有以下特点:

理想的执行:

   function showDialog(values)
    {
      processToChangeDom(values);
      changeDivTobeDisplayed();
      modalDialog.show();
    }
  • 它应该迅速,就像在StackOverflow上添加和连接方言。 大部分图书馆都采取爱护手段,用心脏的效应和 st子来装载方言。

  • 我想用文字说话。 显示一条隐藏的圆环或横线。 图书馆的主讲是用衣物、阶级和手工艺装饰的 anchor。 各种东西。 我需要能够做我想要的东西,而不必给我的主人增添不必要的属性。 类似情况

  • 它应当反映我在隐蔽的鸿沟中对OM作出的改变。 我使用了面对面的方框,发现它提供了隐藏的干.的复印件,而对多功能的改动没有反映模式窗口。

  • 我需要能够使用javascript,在Open和随后的Close操作员面前,把近似模式四称作行动。

是否有任何建议? 我已经尝试过箱子、简单的模式和各种各样的图书馆,大多数图书馆不支持上文描述的这些功能。

最佳回答

Try SimpleModal。 我发现,这只是APIC。

问题回答

http://jqueryui.com

j脏的质子诊断确实是你要求的。 此外,我也指出,需要很多时间才能显示。 甚至连现在的OM元件都不需要使用。 关于“倡议”植被的一点是,你只需要装载你所需要的部件和核心。 这些网络还广泛通过CDN网络提供,使用户有可能已经下载联合材料。

 $(function() {
      $( <div title="I am a dialog"><p>Put whatever you want in here</p></div> )
           .dialog({
               autoOpen: true,
               modal: true,
               open: function(event,ui) { ... },
               close: function(event,ui) {
                         ...
                         $(this).dialog( destroy );
                      }
               draggable: false,
               resizable: false,
               ...
            })
  });

jquery-ui dialog I have found to be light weight and dynamic here an exmple of how you can use it in a funciton

  function display_alert(message,title) {
    title = title || "Alert";
      $( #alert ).text(message); // the message that will display in the dialog

      $("#alert").dialog({
          autoOpen: false,
          bgiframe: true,
          modal: true,
        title:title,
        open: function() {
        },
        close: function (){
            $(document).unbind( keypress ); 
        },
          buttons: {
              OK: function() {
                  $(this).dialog( close );
              }
          }
      });
    $( #alert ).dialog( option ,  title , title);
      $("#alert").dialog( open );
  }

http://jquery.com/demo/thick Box/"rel=“nofollow noreferer”>ThickBox 工作做得很好,特别是如果你想在你的模式内做像录像或闪电之类的事情。

<>If 您在使用“Twitter s Bootsgil”框架时,请查到

Try BlockUI。 我发现这很好。





相关问题
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.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签