现在,我正在制作聊天室。这是你可以输入你的名字的页面代码,但是当用户输入我的名字(网站管理员的名字)时,我会用户输入错误,因为没有网站管理员。我的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>
答案 0 :(得分:1)
您在show函数中错过了结束}
。
答案 1 :(得分:1)
您的代码末尾还需要一个}
。
<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);}
);}
}