0
我在ColorBox模式窗口中提交按钮。如果我点击按钮没有任何反应。提交按钮无法在Colorbox模式窗口中工作
如果我将ColorBox窗口外的按钮移动到主页面内容,它可以正常工作。
的彩盒带来了一些隐藏的div内容:
$.colorbox({
inline: true,
href: "#popup",
width: "580px",
height: "350px",
top: "100px",
opacity: 0.8,
modal: true,
scrolling: false,
onCleanup: function() {
$("div#popup").hide();
}
});
按钮仅仅是一个简单的ASP按钮:
<asp:Button ID="cashBtn" runat="server" Text="Button" onclick="Button1_Click" />
任何想法?
管理修复它使用:http://stackoverflow.com/questions/6424638/asp-net-form-fields-not-posting-from-colorbox – Ben