JavaScript Form Submit - Confirm or Cancel Submission Dialog Box

前端 未结 6 1474
一生所求
一生所求 2020-11-22 15:13

For a simple form with an alert that asks if fields were filled out correctly, I need a function that does this:

  • Shows an alert box when button is clicked w

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 15:34

    The issue pointed in the comment is valid, so here is a different revision that's immune to that:

    function show_alert() {
      if(!confirm("Do you really want to do this?")) {
        return false;
      }
      this.form.submit();
    }
    

提交回复
热议问题