我在我的页面注销一个锚标记。
<a href="/logout/" id="lnk-log-out" />
我在这里表示相对于jQuery UI的对话框确认一个弹出。
如果用户单击是从对话框中,它具有执行链接按钮的默认操作,我的意思是HREF =“/注销”。
如果没有点击一个弹出框应消失。
jQuery代码
$('#lnk-log-out').click(function (event) {
event.preventDefault();
var logOffDialog = $('#user-info-msg-dialog');
logOffDialog.html("Are you sure, do you want to Logout?");
logOffDialog.dialog({
title: "Confirm Logout",
height: 150,
width: 500,
bgiframe: true,
modal: true,
buttons: {
'Yes': function () {
$(this).dialog('close');
return true;
},
'No': function () {
$(this).dialog('close');
return false;
}
}
});
});
});
问题是我不能开火锚的href当用户点击YES。
我们应该怎么做?
编辑:现在,我以这种方式管理
'Yes': function () {
$(this).dialog('close');
window.location.href = $('#lnk-log-out').attr("href");
}