Warning box
alert();
Confirm box
var message=confirm("Do you like javascript"); if(message==true){ document.write("Good, come on");}else{ document.write("js is powerful, you need to learn");}Question box
prompt("text","default");
var myname=prompt(please enter your name); if(myname!=null){ alert("Hello"+myname);}else{ alert("Hello my friend");}The above JavaScript message box effect [Implementation Code] is all the content I have shared with you. I hope you can give you a reference and I hope you can support Wulin.com more.