用javascript實作post送Xml

就這樣,然後想辦法把XML字串丟進來吧!
function send() {
    var xml = '';

    var xmlhttp = new XMLHttpRequest();
    xmlhttp.open("POST", "http://localhost/", true);
    xmlhttp.send(xml);
}
[1]
xmlhttp.open(用POST, 傳去哪個網址, true);
xmlhttp.send(XML字串); 測試頁面
<html>
<head>
    <title>test</title>
    <script type="text/javascript" src="test.js"></script>
</head>
<body>
    <button onclick=send()>Go!!</button>
</body>
</html>

參考資料

[1] How to send a specialized XML request in JavaScript

沒有留言:

張貼留言

(什麼是留言欄訊息?)