0

私は非常に多くのバリエーションの割り当てを試みましたが、私は疲れていて壊れています-以下はxmlと.jsです。私の目標は、テキストを介してユーザー入力を取得し、その値を xml doc の対応するノードの値に割り当てることです

<employee>
    <user>Michael McGraw</user>
    <password>password</password>
    <date></date>
    <in></in>
    <out></out>
</employee>

<script type="text/javascript">
if (window.XMLHttpRequest){
   xmlhttp=new XMLHttpRequest();
}
else{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
xmlhttp.open("POST","userPass.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;

$(document).ready(function(){//when the page is ready. . . 

$('#datepicker').datepicker();//jquery ui datepicker, **this is the value Im working with
$('#timeIn').timepicker({ 'scrollDefaultNow': true });//jquery ui plug 
$('#timeOut').timepicker({ 'scrollDefaultNow': true });

$('#submit').on('click',function(event){//when user clicks submit do this. . . 
    var timeIn = (document.getElementById("timeIn").value);
    var timeOut = (document.getElementById("timeOut").value);
    var aDate = (document.getElementById("datepicker").value);
    xDate = xmlDoc.getElementsByTagName("date"); 
    xDate.nodeValue = aDate;////assign the value of datepicker=<date>
    alert(xDate.nodeValue);//please 
4

0 に答える 0