Go to URL after OK button if alert is pressed

后端 未结 7 584
逝去的感伤
逝去的感伤 2020-12-01 17:33

I need to make sure that when the user clicks OK in a JavaScript alert window, the browser moves to a different URL. Is this possible?

7条回答
  •  难免孤独
    2020-12-01 18:20

    I think what you need is this :

    if(confirm("Do u want to continue?")) {
        window.location.href = "/some/url"
    }
    

提交回复
热议问题