玉的格式有问题吗?
1. doctype html
2. html
3. head
4. script.
5. function submitData() {
6. var obj={
7. firstname:document.getElementById("txtFirstName").value, ***`<---7 line --->`***
8. username:document.getElementById("txtUserName").value
9. };
10. var xhr = new XMLHttpRequest(); <--lines 10 here
xhr.open('post','/',true);
xhr.onload = function(e) {
if(this.status == 200){document.getElementById("result").innerHTML=this.response;}
};
xhr.send(JSON.stringify(obj));
}