1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<html><body>
<script type="text/javascript">
function afficher(co,cha,de)
{ var obj;
if (navigator.appName.search("Microsoft") > - 1)
{ obj = new ActiveXObject ("MSXML2.XMLHTTP");
}
else
{ obj= new XMLHttpRequest();
}
obj.open('POST',co,true);
obj.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
obj.onreadystatechange = function()
{ if (obj.readyState == 4 && obj.status == 200)
{ document.getElementById(de).innerHTML = obj.responseText;
}
};
obj.send(cha);
return(false);
}
function afficherD(Date,Code)
{ var ch;
ch="date="+Date+"&code="+Code;
afficher("det.php",ch,"detail");
}
</script>
<table><tr>
<td><input type='button' value='+' OnClick="afficherD('21/01/2010' ,100 );" > </td></tr></table></body></html> |