我有下面的代碼,它使用JQuery框架和ASP.NET(VB)。來自LinkButton的JQuery Popup
基本上下面的代碼片段是在ASP頁上,直到您單擊超鏈接/按鈕,然後在彈出窗口被遮住了,下面是隱藏彈出代碼,這是我知道的作品:
<!--HIDDEN POPUP 1 BEGIN-->
<div class="ui-popup-screen ui-overlay-a ui-screen-hidden" id="popupDialog1-screen"> </div>
<div class="ui-popup-container pop ui-popup-hidden" id="popupDialog1-popup"><div data-role="popup" id="popupDialog1" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all ui-popup ui-body-c ui-overlay-shadow" aria-disabled="false" data-disabled="false" data-shadow="true" data-corners="true" data-transition="none" data-position-to="origin" data-dismissible="true">
<div data-role="header" data-theme="a" class="ui-corner-top ui-header ui-bar-a" role="banner">
<h1 class="ui-title" role="heading" aria-level="1">Export Data</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content ui-body-d" role="main">
<h3 class="ui-title">Export Data</h3>
<asp:HiddenField ID="hidDataName" runat="server" />
<p>Choose one of the formats below to export the data to.</p>
<div data-role="controlgroup" data-type="horizontal">
<asp:LinkButton ID="btnExcel" runat="server" data-role="button"><asp:Image ID="imgExcel" runat="server" ImageUrl="~/images/Excel.ico" Width="50px" Height="50px" />Excel</asp:LinkButton>
<asp:LinkButton ID="btnPDF" runat="server" data-role="button"><asp:Image ID="imgPDF" runat="server" ImageUrl="~/images/PDF.ico" Width="50px" Height="50px" />PDF</asp:LinkButton>
<asp:LinkButton ID="btnWord" runat="server" data-role="button"><asp:Image ID="imgWord" runat="server" ImageUrl="~/images/Word.ico" Width="50px" Height="50px" />Word</asp:LinkButton>
<asp:LinkButton ID="btnCSV" runat="server" data-role="button"><asp:Image ID="imgCSV" runat="server" ImageUrl="~/images/CSV.ico" Width="50px" Height="50px" />CSV</asp:LinkButton>
</div>
</div>
</div></div>
<!--HIDDEN POPUP 1 END-->
現在我有下面這將打開沒有問題的彈出罰款鏈接:使用一個LinkButton但是我
<a href="#popupDialog1" data-rel="popup" data-position-to="window" data-role="button" data-inline="false" data-transition="pop" data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" aria-haspopup="true" data-theme="j" aria-owns="#popupDialog1" class="ui-btn ui-shadow ui-btn-corner-all ui-btn-hover-j ui-btn-up-j">
<span class="ui-btn-inner"><span class="ui-btn-text">Approve All</span></span></a>
但是我希望能夠運行在上面按一下按鈕一些代碼,我已盡力無法顯示彈出窗口。我想運行一些代碼的原因是我需要知道頁面上的哪個按鈕請求彈出窗口。
我希望這是有道理的。
任何幫助表示讚賞。
謝謝你,史蒂夫
你可以解釋一下你想運行什麼代碼(服務器端,客戶端)嗎?也許給點擊按鈕時想要發生的事情的快速工作流程? –