0

私はJavaScriptを使用してこのポップアップ機能を持っています

 function BookingIDCancellation() {

        window.open("popup/BookingIDCancellation.aspx?field=BookingID|<%=txtBookingID.clientid%>", "mywindow", "menubar=0,resizable=1,scrollbars=1,width=500,height=450")

    }

ボタンをクリックするとポップアップし、ポップアップページから値を取得するように、ボタンでこの関数を使用します。

<asp:Button ID="btnBrowse" CssClass="button" runat="server" Text="Browse" OnClientClick="BookingIDCancellation();return false;" />

このwindow.openをjqueryカラーボックスで使用して、ポップアップウィンドウをより見栄え良くするにはどうすればよいですか?

4

1 に答える 1

0

You can use the code below:

function BookingIDCancellation(){
     $.colorbox({href:"popup/BookingIDCancellation.aspx?field=BookingID|<%=txtBookingID.clientid%>", width:"500px", height:"450px"});
}

Please note that if "BookingIDCancellation.aspx" contains Postback functions you need to add the "iframe:true" paramater to the $.colorbox function, and you need to set the Postback URL in the "BookingIDCancellation.aspx" page.

iFrame code:

function BookingIDCancellation(){
     $.colorbox({href:"popup/BookingIDCancellation.aspx?field=BookingID|<%=txtBookingID.clientid%>", width:"500px", height:"450px", iframe:true});
}
于 2012-06-26T10:46:59.700 に答える