<html>
<head>
<title>alert demo</title>
<style type="text/css">
.red{
color:#d00;
}
.blue{
color:#00d;
}
</style>
</head>
<body>
<script type="text/javascript">
document.write("接下来将显示confirm确认对话框!<br/>");
if(confirm("是否显示红色文字/n取消将显示蓝色文字")==true){
document.write("<h3 class="red">红色文字</h3>");
}else{
document.write("<h3 class="blue">蓝色文字</h3>");
}
</script>
</body>
</html> |
|