Js的三种消息框

#前言
js消息框类别:警告框、确认框、提示框


警告框:alert(“文本”);


确认框:confirm(“文本”);


提示框:prompt(“文本”,”默认值”);


一:confirm使用范例






使用范例”>
二:prompt使用范例: