1

我是新手JQuery。我需要使用弹出消息框JQuery。请帮助如何做到这一点,或者请提供我如何获得此链接的链接。

我正在使用 messi,但我无法获得所需的结果。

<html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
    <title></title>
    <link rel="stylesheet" href="files/messi.min.css" />
  </head>
  <body>
    <script src="files/messi.min.js">    
      new messi('This is a message with Messi.', { title: 'Title' });
    </script>
   <form id="form1" runat="server">
     <div>
       <asp:Button ID="Button1" runat="server" Text="click" />
     </div>
   </form>
  </body>
</html>
4

2 回答 2

5

您可以使用jQuery Ui轻松完成。

HTML

 <a href="#" id="contactUs">Contact Us</a>                   
 <div id="dialog" title="Contact form">
   <p>appear now</p>
 </div>

您需要初始化对话框

$(function() {
  // this initializes the dialog (and uses some common options that I do)
  $("#dialog").dialog({autoOpen : false, modal : true, show : "blind", hide : "blind"});

  // next add the onclick handler
  $("#contactUs").click(function() {
    $("#dialog").dialog("open");
    return false;
  });
});

对话框弹出的大链接 链接 1 另一个链接 2

我从这里得到这个

希望这会有所帮助。祝你好运。

于 2012-12-05T13:32:43.617 回答
0

我有同样的问题,并通过使用Ajax Control Toolkit弹出消息框解决。

你可以在这里找到一个例子:http ModelPopupExtender: //jamestsai.net/Blog/post/How-to-use-ASPNET-AJAX-UpdatePanel-in-ModalPopup.aspx 你可以自定义这个。也可以手动通过codebehind弹出消息框。

问候,本吉。

于 2013-04-26T09:07:16.813 回答