我正在为一项作业编写一个简单的网页,如果输入的ID号在外部XML文档中匹配,则需要我创建一个自动填充的表单。一切正常,直到我开始在提交时添加另一个函数来添加或修改记录(通过AJAX调用)。
然而,在添加这个新功能后,另一个停止工作。如果我将其评论出来,原始功能将再次起作用。
我找不到这个新功能的任何问题(即所有括号都在正确的位置等)。为什么会破坏一切?
这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<script type="text/javaScript">
function checkID(val){
if (val.value.length != 6) //Since student ID's are six digits
return;
//inID = val.value;
//if (inID.length < 6) return;
xhr = new XMLHttpRequest();
xhr.open('GET', 'processor.php?studentID=' + document.forms[0].elements[0].value);
xhr.onreadystatechange = function() {
/**
if (xhr.readystate != 4 || xhr.status != 200){
document.getElementById("status").innerHTML = "<p> Not Done Yet</p>";
}
**/
if (xhr.readyState === 4 && xhr.status === 200){
document.getElementById("status").innerHTML = "";
parse(xhr.responseXML);
}
}
xhr.send();
document.getElementById("status").innerHTML = "<p> Not Done Yet</p>";
}
function parse(xml){
if (xml == null) alert("Null!");
var student = xml.getElementsByTagName('student');
if (student.length == 0) alert("No Student's Found with that ID");
var content = student.item('0');
var name = content.getElementsByTagName('fullname');
name = name.item(0).childNodes[0].nodeValue;
document.forms[0].elements[1].value = name;
var phone = content.getElementsByTagName('phone');
phone = phone.item(0).childNodes[0].nodeValue;
document.forms[0].elements[2].value = phone;
var email = content.getElementsByTagName('email');
email = email.item(0).childNodes[0].nodeValue;
document.forms[0].elements[3].value = email;
}
function addOrModify(curr){
xhr = new XHRHttpRequest();
xhr.open('GET', 'addOrModify.php?studentID=' + document.forms[0].elements[0].value);
xhr.onreadystatechange = function(){
if (xhr.readyState == 4 && xhr.status == 200){
if (xhr.responseText == "added")
document.getElementByID('status').innerHTML = "Added";
}
xhr.send();
}
</script>
<style type="text/css">
#container {
margin: 0 auto;
padding: 30px;
text-align: center;
}
.centerp {
font-size: 150%;
text-align: center;
}
table {
align: center;
}
</style>
<title>Student Profile</title>
</head>
<body>
<p class="centerp"> Student Profiles </p>
<div id="container">
<form method="GET" action="">
<table align="center">
<label>
<tr>
<td>Student ID</td>
<td><input type="text" name="studentID" onblur="checkID(this)"> </input></label></td>
</tr>
</label>
<label>
<tr>
<td>Name</td>
<td><input type="text" name="name" id="name"> </input></label></td>
</tr>
</label>
<label>
<tr>
<td>Phone</td>
<td><input type="text" name="phone"> </input></label></td>
</tr>
</label>
<label>
<tr>
<td>Email</td>
<td><input type="text" name="email"> </input></label></td>
</tr>
</label>
<tr>
<td> <input type="submit" onclick="addOrModify()"> </input></td></tr> </td>
</tr>
<tr>
<td> <div id="status">
</div> </td>
</tr>
</table>
</form>
</div>
</body>
</html>
答案 0 :(得分:2)
你说所有的括号都在正确的位置,但它们不是。
你没有关闭
if (xhr.readyState == 4 && xhr.status == 200){
在你的上一个功能中
答案 1 :(得分:1)
通过在jsfiddle here中运行代码,您可以在调试器中看到您缺少的内容}
在控制台中你得到 函数体后面的错误= SyntaxError:missing}。
因此,通过查看您的代码,最后只需忽略一个},请参阅http://jsfiddle.net/3QNHf/1/
我还包括了一些你的if语句,更好的做法,更容易调试使用
if(statement){ do somthing}
而不是
if(statement)do something
完整代码
function checkID(val){
if (val.value.length != 6){ //Since student ID's are six digits
return;}
//inID = val.value;
//if (inID.length < 6) return;
xhr = new XMLHttpRequest();
xhr.open('GET', 'processor.php?studentID=' + document.forms[0].elements[0].value);
xhr.onreadystatechange = function() {
/**
if (xhr.readystate != 4 || xhr.status != 200){
document.getElementById("status").innerHTML = "<p> Not Done Yet</p>";
}
**/
if (xhr.readyState === 4 && xhr.status === 200){
document.getElementById("status").innerHTML = "";
parse(xhr.responseXML);
}
}
xhr.send();
document.getElementById("status").innerHTML = "<p> Not Done Yet</p>";
}
function parse(xml){
if (xml == null){ alert("Null!")};
var student = xml.getElementsByTagName('student');
if (student.length == 0){ alert("No Student's Found with that ID")};
var content = student.item('0');
var name = content.getElementsByTagName('fullname');
name = name.item(0).childNodes[0].nodeValue;
document.forms[0].elements[1].value = name;
var phone = content.getElementsByTagName('phone');
phone = phone.item(0).childNodes[0].nodeValue;
document.forms[0].elements[2].value = phone;
var email = content.getElementsByTagName('email');
email = email.item(0).childNodes[0].nodeValue;
document.forms[0].elements[3].value = email;
}
function addOrModify(curr){
xhr = new XHRHttpRequest();
xhr.open('GET', 'addOrModify.php?studentID=' + document.forms[0].elements[0].value);
xhr.onreadystatechange = function(){
if (xhr.readyState == 4 && xhr.status == 200){
if (xhr.responseText == "added")
document.getElementByID('status').innerHTML = "Added";
}
xhr.send();
}
}