1.alert,用来弹出提示信息和警告信息。
alert("this is a warn!");
2.confirm,确认框
if(confirm("do you want to delete it?")){
3.提问(prompt)
var score = prompt("你的分数是多少?")