现在,我正在制作一个聊天框。这是页面的代码,你可以输入你的名字,但我会,当用户输入我的名字(网站管理员的名字)时,用户会出错,因为没有网站管理员。我的 if-else 功能不起作用。有谁能帮助我吗?谢谢
<html>
<head>
<title></title>
<style type="text/css">
#main{
width: 400px;
height: 300px;
background-color: #333;
text-align: center;
position: absolute;
color: white;
left:50%;
margin-left: -200px;
top: 50%;
margin-top: -150px;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
function show() {
var text = document.getElementById('text');
if (text.value == "Jonathan Cazaerck"){alert("Deze gebruiker mag u niet gebruiken");}
else{
$.post("processing.php", { stage: "newuser", username: $("#text").val()}, function(data){
window.location = ("newsession.php?user="+data);}
);}
</script>
</head>
<body>
<div id="main"><br><br><br><br>
Geef je voor- en achternaam op: <br><br><input type="text" size="35" id="text"/><button id="send" onclick="show();">Verzenden</button>
</div>
</body>
</html>