0

I have a submit button in a ColorBox modal window. If I click the button nothing happens.

If I move the button outside of the ColorBox window to the main page content it works fine.

The ColorBox brings up some hidden div content:

$.colorbox({
                inline: true,
                href: "#popup",
                width: "580px",
                height: "350px",
                top: "100px",

                opacity: 0.8,
                modal: true,
                scrolling: false,
                onCleanup: function () {
                    $("div#popup").hide();
                }
            });

The button is just a simple asp button:

<asp:Button ID="cashBtn" runat="server" Text="Button" onclick="Button1_Click"  />

Any ideas?

4

1 に答える 1

2

カラーボックス ダイアログがフォーム タグ内でレンダリングされているかどうかを確認してください。

ダイアログを form タグに追加する必要があります。

于 2012-06-20T12:53:40.897 に答える