我使用ASP .NET MVC 5。我想在单击退出确定或取消的视图显示消息框中单击退出按钮时。我怎样才能做到这一点 ?请帮帮我。
答案 0 :(得分:0)
这是你想要的:
function myFunction() {
var x;
if (confirm("Press a button!") == true) {
x = "You pressed OK!";
} else {
x = "You pressed Cancel!";
}
}

<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Try it</button>
</body>
</html>
&#13;