html页面简单的三种对话框如下:
alert(),最简单的提示框:
1
alert("你好!");
confirm(),有确认和取消两个按钮:
1
2
3
4
5if(confirm("还有继续吗?")){
alert("继续");
}else{
alert("再见");
}
prompt(),可以输入信息:
1
2var name = prompt("你的名字是:");
alert("你好," + name);
confirm实例
这是一个退出方法,可以通过button的onclick方法实现
function logout() {
if (confirm("Please make sure to logout!")) {
window.location.href = "DestorySession";
} else {
}
}
base.css、common.css、page.css
一。base.css被所有页面引用,包括base reset和通用原子类