我有一个按钮的 2 个 jquery .click 函数。函数应该一个接一个地触发。第二个功能没有触发。
<asp:Button ID="Button1" runat="server" Text="Save" Width="70px" />
// this function is fired
$(document).ready(function () {
$("#<%=Button1.ClientID%>).click(function () {
//some code here
var con = confirm("message");
if (con) return true;
else return false;
});
});
// in another <script>
// this function is not getting fired
$(document).ready(function () {
$("#<%=Button1.ClientID%>").click(function () {
var con1 = confirm("message");
if (con1) {
return true;
} else {
return false;
}
}
});
});
两个函数怎么能一个接一个地触发??或者我如何在一个函数中编写两个逻辑?