JSP 页面是/否对话框

发布于 2024-10-30 17:58:49 字数 138 浏览 2 评论 0原文

我在 JSP 更新页面上有三个字段:用户 ID、名称和 ssn。我想要一个简单的对话框,显示“您已经有 ssn,确定要修改它吗?”取决于用户的是或否响应而不是执行任务?有没有一种方法可以在我的java代码中添加一些东西来实现这一点..任何帮助都会很棒..谢谢..

I have three fields on JSP Update page userid, name and ssn.. I would like to have simple dialog box saying "You already have ssn, are you sure you want to modify it?" depending on the user's yes or no response than it performs the task? Is there a way I can add something on my java code to make this happen.. any help would be great.. thank you..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无可置疑 2024-11-06 17:58:49

您应该为此使用 java 脚本。

<script type="text/javascript">
    var response = confirm ("You already have ssn, are you sure you want to modify it?")
    if (response){
      //do yes task
    }else{
     //do no task
    }
</script>

You should use java script for this.

<script type="text/javascript">
    var response = confirm ("You already have ssn, are you sure you want to modify it?")
    if (response){
      //do yes task
    }else{
     //do no task
    }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文