<!DOCTYPE html>
<!--
弹框
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
var money = prompt("工资");
if(money>20000){
document.write("土豪");
}else if(money<2000){
document.write("屌丝");
}else{
document.write("dazhong");
}
</script>
</head>
<body>
</body>
</html>