开发者

JSP page yes/no dialog box

开发者 https://www.devze.com 2023-02-22 10:11 出处:网络
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 开发者_如何学Csure you want to modify it?\" depending on the

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 开发者_如何学Csure 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..


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>
0

精彩评论

暂无评论...
验证码 换一张
取 消