简体   繁体   中英

pop up confirmed + alert in javascript

how do I make confirmed pop up by alert for user's data in form, for example :confirmed box: dear (user name) are you sure? alert box: thanks for submission (user name)

There are the functions confirm and alert :

username = document.getElementById("Username").value;
confirm("dear " + username + " are you sure?"); 
alert("thanks for submission, " + username); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM