我在中继器中有一个链接按钮,如下所示:
<asp:LinkButton ID="lnkDelete" runat="server" CommandName="delete" OnClientClick='javascript:return showConfirm("Are you sure you want to delete?")'
CommandArgument='<%# DataBinder.Eval(Container.DataItem, "ReasonId") %>'>Delete</asp:LinkButton>
当用户单击删除时,我使用jQuery noty 插件显示确认。
showConfirm()
函数是这样的:
function showConfirm(message) {
var n = noty({
text: message, //'Are you sure?',
type: 'confirm',
dismissQueue: false,
layout: 'center',
theme: 'defaultTheme'
, buttons:
[{
addClass: 'btn btn-primary', text: 'Ok', onClick: function ($noty) {
$noty.close(); return true;
}
},
{
addClass: 'btn btn-danger', text: 'Cancel', onClick: function ($noty) {
$noty.close(); return false
}
}]
})
}
但它不会返回true
或false
。我如何返回true
或false
单击ok
或cancel
按钮时。?