这是处理...我需要做一个AJAX保存脚本。我有一个建立在PHP上的整个系统,每个动作都需要刷新......我试图通过使用AJAX来最小化刷新计数......我似乎无法找到一种方式来发送所见即所得的编辑器输出而不会丢失PHP脚本...AJAX POST的Javascript数组发送
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}
else{
xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
}
function save(){
xmlhttp.open('POST','action.php',true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", document.getElementById('output').value.length);
xmlhttp.setRequestHeader("Connection", "close");
xmlhttp.send(document.getElementById('output').value);
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status==200){
$('#ajaxresult').css('opacity', 0.1);
$('#ajaxresult').stopAll().pause(1000).fadeTo(400,1);
$('#ajaxresult').stopAll().pause(3000).fadeTo(400,0, function(){$(this).hide();});
document.getElementById('ajaxresult').innerHTML=xmlhttp.responseText;
}
}
}
虽然这个脚本工作正常,我似乎无法找到什么样的阵列来给发送选项的方式...什么是语法或者是有什么我不不知道?
顺便说一句,我在JS初学者...