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>
沒有留言:
張貼留言
(什麼是留言欄訊息?)