0

嗨,如何在 java 脚本弹出窗口中显示表格格式的数据。可以在 java 脚本弹出窗口中显示表格格式的数据。在 asp.net 中使用 C# 语言。

4

2 回答 2

0

有一个扩展器 ,你可以像这样使用它:

<asp:Panel runat="server" ID="Panel1">
        Hello World!
</asp:Panel>

<ajaxToolkit:ModalPopupExtender ID="MPE" runat="server"
    TargetControlID="LinkButton1"
    PopupControlID="Panel1"
    DropShadow="true" 
    OkControlID="OkButton" 
    CancelControlID="CancelButton" 
    PopupDragHandleControlID="Panel3" >
        <Animations>
            <OnShowing> ..  </OnShowing>
            <OnShown>   ..  </OnShown>    
            <OnHiding>  ..  </OnHiding>            
            <OnHidden>  ..  </OnHidden>            
        </Animations>
    </ajaxToolkit:ModalPopupExtender>

无论您在该面板中放置什么,它都会弹出。

于 2013-05-14T09:31:00.787 回答
0

您不能在常规 JS 警报框中显示格式化的表格。警报功能打开一个不显示 HTML 的 OS\ Web 浏览器愤怒窗口。

您的替代方法是使用任何可用的模态对话框 JS 插件,它允许您创建类似的东西。

这是一个使用带有表格的 jQuery 模式对话框的示例: JS FIDDLE 示例

html:

<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>
    <table border="1">
        <tr><td>hello</td><td>hello</td><td>hello</td></tr>
        <tr><td>hello</td><td>hello</td><td>hello</td></tr>
        <tr><td>hello</td><td>hello</td><td>hello</td></tr>
        <tr><td>hello</td><td>hello</td><td>hello</td></tr>
        <tr><td>hello</td><td>hello</td><td>hello</td></tr>
    </table>
</div>

JS:

 $(function() {
    $( "#dialog" ).dialog();
  });
于 2013-05-14T09:16:50.633 回答