我有以下代码:
xmlDoc=loadXMLDoc("dbbackup.xml");
x=xmlDoc.getElementsByTagName("record");
alert(x);
for (i=0;i<3;i++) {
newel=xmlDoc.createElement("edition");
newtext=xmlDoc.createTextNode("first");
alert("x : "+x[i]);
alert("newtext :"+newtext.nodevalue);
x[i].appendChild(newel);
alert("sd");
}
function loadXMLDoc(dname) {
if (window.XMLHttpRequest) {
xhttp=new XMLHttpRequest();
} else {
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",dname,false);
xhttp.send();
return xhttp.responseXML;
}
我在同一位置创建了dbbackup.xml
,XML文件如下:
<sticky>
<record></record>
</sticky>
但是在运行我的脚本后,xml
文件没有得到更新。
答案 0 :(得分:1)
Javascript无法修改磁盘上的文件,只能在客户端的Web浏览器中为客户端运行。
要实际写入服务器上的文件,必须使用服务器端语言和技术,如PHP或ASP。
答案 1 :(得分:1)
我做了这个 - 在客户端制作XML,然后使用日常的praksis 迈克
function makeSlot(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) showBon(); }
xmlhttp.open("POST","crMakeSlot.php",true);
xmlhttp.send(wrapUp());
}
/***
* make the final transaction - using XML
*/
function wrapUp () {
var transaction = document.implementation.createDocument("","", null);
var operator = document.createElement("operator");
var textblok1 = document.createTextNode(document.getElementById("rText").value);
operator.appendChild(textblok1);
var root = document.createElement("transaction");
root.setAttribute("tstamp", now);
root.setAttribute("sequenceno", zSequenceNo.textContent);
if (parseInt(document.getElementById("zDankort").value) > 0) root.setAttribute("dankort", document.getElementById("zDankort").value);
if (parseInt(document.getElementById("zCash").value) > 0) root.setAttribute("cash", document.getElementById("zCash").value);
if (parseInt(document.getElementById("zCredit").value) > 0) root.setAttribute("credit", document.getElementById("zCredit").value);
if (parseInt(document.getElementById("zCheck").value) > 0) root.setAttribute("check", document.getElementById("zCheck").value);
if (parseInt(document.getElementById("zGiftcard").value) > 0) root.setAttribute("giftcard", document.getElementById("zGiftcard").value);
if (parseInt(document.getElementById("zVoucher").value) > 0) root.setAttribute("voucher", document.getElementById("zVoucher").value);
root.appendChild(operator);
var divObj = document.getElementsByTagName("div");
/***
* when column value is 4, then we have our data complete - next cycle
*/
for (ix = 0; ix < divObj.length; ix++) {
switch (divObj[ix].getAttribute("column")) {
case "1": var row = document.createElement("row"); row.setAttribute("item",divObj[ix].textContent);
case "2": row.setAttribute("price",divObj[ix].textContent);
case "3": row.setAttribute("quantum",divObj[ix].textContent);
case "4": root.appendChild(row);
default: break;
}
}
transaction.appendChild(root);
return(transaction);
}
答案 2 :(得分:1)
SomeKidWithHTML是对的。
JavaScript旨在仅修改内存中加载到浏览器框架内的文件。
将浏览器视为您的孩子(html,xml等)可以播放的沙箱。只要Johnny(xml)在沙盒中播放,一切都很好。但如果Johnny被允许在该沙箱之外玩游戏,那就想想网站上可以对您的机器造成的破坏。
JavaScript无法直接影响本地计算机上的文件。它只能在沙箱中播放(在本地,它可以调用Java或其他API来影响更改,但这是另一个交易)。
JavaScript只是客户端。如果您希望它影响服务器,则只能通过回调服务器来实现。在服务器上,您将需要某种编程(asp.net,java,php,html,其他)来接收和回答该调用并对其执行某些操作。
JavaScript本身就非常强大......但仅限于沙箱(浏览器)。为了影响浏览器之外的任何其他内容,它必须依赖已有的其他程序并准备好接收这些请求。
这主要是以安全为名。
答案 3 :(得分:1)
您可以从客户端的网页收集数据并将其发送到服务器(ajax),然后生成xml文件并发送回文件的链接(ajax)。使用javascript使用服务器返回的链接生成下载链接。
这是我在我的一个项目中解决问题的方法。