JavaScript confirm cancel button not stopping JavaScript

前端 未结 7 1480
天涯浪人
天涯浪人 2020-12-24 15:27

I have a delete button that is tied to some comments on a page i have. When you click the delete button i am trying to get a confirm dialog box to pop up asking if you are

相关标签:
7条回答
  • 2020-12-24 16:23

    May this help someone.

    var result = confirm("Are you sure");
    return !!result;
    
    0 讨论(0)
提交回复
热议问题