我已经开发了一个小的asp.net web应用程序,我有一个在这个buttob我使用onclick事件页面重定向到另一个页面
<a class="details-link" data-role="listview-link" onclick="AfterChangestatus('<%=Getstatus[0] %>')"><%=Getstatus[1] %></a>
function AfterChangestatus(DocStatusvalues) {
$("#place_of_loading_image").show();
window.location.href = "AppointmentDetails.aspx?changedropdown=" + DocStatusvalues;
}
这对我有用。
现在我想在同一个href中添加符合性消息框,按钮是/否,当我点击是它将重定向到页面,否则它将保留在该页面上并关闭弹出窗口
是的,请帮帮我..答案 0 :(得分:0)
if(window.confirm("Are you sure?")){
// do stuff
}else{
// not confirmed stuff
}
答案 1 :(得分:0)
试试这个:
function AfterChangestatus(DocStatusvalues) {
var r = confirm("Are you sure?");
if (r == true)
{
$("#place_of_loading_image").show();
window.location.href = "AppointmentDetails.aspx?changedropdown=" + DocStatusvalues;
}
}