您好,我有這樣的代碼發送Ajax請求
<button onclick="sbt()" name="step1[save]" type="submit" class="btn-type5 next-btn-form pie" value="Далее">Send</button>
function sbt(){
var phone = document.getElementById('fld1').value;
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}}
xmlhttp.open("GET","host.com/send.php?phone="+phone+"&t="+Date.now(),true);
xmlhttp.send();
}
我想給這個請求的異步,但是當我使用xmlhttp.open(...,...,true)
申請好好嘗試一下,即使去到服務器,我看它在谷歌瀏覽器的控制檯,而是如果我運行sbt()
功能從控制檯請求確定,如果我使用xmlhttp.open(...,...,false)
它工作正常,有人可以幫助我嗎?謝謝。
你讀過「如何從返回一個Ajax調用的響應」的問題? –
我不需要回復我只需要發送請求。 –
您確實在'host.com'之前缺少一個報價,或者是複製/粘貼錯誤? –