弹出提示框一般有3种
1)alert (普通提示框)
2)prompt (可输入的提示框)
3)confirm (可选择的提示框)
下面举个例子:
Document第一种:alert第二种:prompt第三种:confirm
function a(){alert(“c”);}