我正在学习 javascript、xml 和 html。对于家庭作业,我需要从 XML 文件的某些节点中检索一些数据,连接数据,并将连接的字符串存储在 localStorage 中。我无法将连接的字符串存储在 localStorage 中。我相信问题在于这两行 -
var s_data = localStorage[学生];
$("#clickme").text("学生的名字:" + s_data);
有人可以看看并给我一些关于如何解决它的提示吗?预先感谢您的帮助。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<title>HWK</title>
<meta charset="UTF-8">
</head>
<body>
<div id="clickme" onclick="startAjax()">Click me to see all the students' first names</div>
<script>
function startAjax(){
$("#clickme").text("Calling server");
$.ajax({url:"hwk.xml",
success:callbackFunction, error:errorFunction});
}
function callbackFunction(data,info)
{
var students = $(data).find("student first_name");
try {
if (students && students.length)
{
var s_data = localStorage[students];
$("#clickme").text("Students' first names: " + s_data);
}
}
catch (e) {
if (e != window["localStorage"])
alert("No local storage. Should use cookie instead.");
}
}
function errorFunction(data,info){
$("#clickme").text("error occurred:"+info);
}
</script>
</body>
</html>