0

我想在 aspx 表单上有一个按钮(使用 vb.net) 该按钮将打开一个较小的表单,其中包含一些说明需要完成的内容的文本。有人有关于如何做到这一点的示例代码吗?

我希望新窗口简单地弹出在当前窗口的前面。谢谢

4

2 回答 2

0

使用javascriptwindow.open方法带来一个新窗口。

var mywindow = window.open("myhelpPage.html, '', 'status=1,width=700,
                           height=600,scrollbars=1,resizable=1,top=10,left=200');

这将打开一个新窗口。如果你想要任何花哨的模型弹出窗口,有很多 javascript 插件可以做到这一点。我使用了jQuery UI 对话框jQModal。插件(这需要您页面中的 jQuery 库)

于 2013-06-07T20:32:08.337 回答
0

有很多选择。您可以包含 jQuery UI ( http://jqueryui.com/dialog/ ) 并创建一个对话框,如下所示:

<html lang="en">
<head>
   <meta charset="utf-8" />
  <title>jQuery UI Dialog - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
     $( "#dialog" ).dialog();
  });
  </script>
</head>
<body>

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>


</body>
</html>
于 2013-06-07T20:36:52.407 回答