使用jQuery通过recover函数确认消息

时间:2017-11-05 15:48:12

标签: jquery modal-dialog

我有一个用于恢复电子邮件模板的按钮。因此,您可以选择是否要恢复原始模板,或者您将坚持使用默认模板中的更改。将显示确认对话框。但是,如果我点击取消,那么模板也会转到他原来的默认值,不一定是。

这是按钮的jQuery:

 window.location.href = '@Url.Action("Wijzigen", "EmailTemplate", new { area = "Salaris", id = Model.Id, orgToepassen = true })&type=' + '@(Model.Type)';

这是确认对话框的jQuery:

  $('#herstel-standaard').click(function () {
            if (window.confirm('Weet u het zeker?')) {
                $('#content').load($(this).attr('href'));
            }


            window.location.href = '@Url.Action("Wijzigen", "EmailTemplate", new { area = "Salaris", id = Model.Id, orgToepassen = true })&type=' + '@(Model.Type)';
        });

这是按钮的HTML:

 @ButtonHelper.Button(ButtonType.Default, ButtonSize.Large, "Herstel standaard mail", id: "herstel-standaard", icon: "glyphicon-refresh")

0 个答案:

没有答案