本文介绍了如何在asp.net中对警报消息中的“确定"按钮采取措施?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过在警报消息中使用确定"按钮将另一个网页设置为当前网页?
How can i set another web page to current webpage by using ''ok'' button in alert message?
推荐答案
var r = confirm("Press a button");
if (r==true)
{
x="You pressed OK!";
}
else
{
x="You pressed Cancel!";
}
这篇关于如何在asp.net中对警报消息中的“确定"按钮采取措施?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!