我有一个应该将数据插入 XML 文件的 js 函数。一切都在本地服务器中运行。函数参数是从另一个函数发送的变量。
function xmlinsert(srcf, typef, textf) {
console.log("Type: "+typef);
console.log("Source: "+srcf);
console.log("Text: "+textf);
//XML Connection
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","./include/xml/gallery.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
var divi = xmlDoc.createElement("divi");
var photo = xmlDoc.createElement("photo");
var source = xmlDoc.createElement("source");
source.appendChild(xmlDoc.createTextNode(srcf));
var type = xmlDoc.createElement("type");
type.appendChild(xmlDoc.createTextNode(typef));
var text = xmlDoc.createElement("text");
text.appendChild(xmlDoc.createTextNode(textf));
var picname = xmlDoc.createElement("picnamet");
picname.appendChild(xmlDoc.createTextNode("A"));
photo.appendChild(source);
photo.appendChild(type);
photo.appendChild(text);
photo.appendChild(picname);
divi.appendChild(photo);
ix=xmlDoc.getElementsByTagName("root")[0];
ix.appendChild(divi);
}
问题是,执行该函数时没有任何反应。该文件保持不变。实际读取和显示其数据的另一个函数使用同一个文件。这可以正常工作。浏览器的控制台中不会显示任何错误。
代码有什么问题?为什么我能够读取数据,但不能写入?是因为一些权限问题吗?
提前致谢!