2012-06-08 85 views
0

那麼,我有我的php頁面中的選擇列表,我想刷新只有從我的數據庫中的新數據。它使用ajax,但在Android或其他手機操作系統這樣弄亂了layout.Is可移植的操作系統和ajax有問題嗎?你能給我任何提示來解決這個問題嗎?ajax和便攜式操作系統

編輯

/*function loadXMLDoc() 
{ 
var xmlhttp; 
if (window.XMLHttpRequest) 
    {// code for IE7+, Firefox, Chrome, Opera, Safari 
    xmlhttp=new XMLHttpRequest(); 
    } 
else 
    {// code for IE6, IE5 
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
    } 
    xmlhttp.onreadystatechange=function() 
    { 
    if (xmlhttp.readyState==4 && xmlhttp.status==200) 
    { 
     var sel1 = document.getElementById("select1"); 
     var selectedI = sel1.selectedIndex; 

     var i=0; 
     var excode = excur[selectedI]; 
     var val = sel1.options[selectedI]; 

     excursioncode=excode; 
     excindex = selectedI; 
     val.innerHTML = xmlhttp.responseText; 
     //alert(xmlhttp.responseText); 

     //setTimeout("loadXMLDoc();",10000); 
    } 
    } 

xmlhttp.open("POST","<?php echo SITE_ROOT;?>ajaxphp/ajax_get_seats.php?excode="+excursioncode+"&date="+selected_date,true); 
xmlhttp.send(); 
} 

function timedRefresh(timeoutPeriod) { 
    tm=setTimeout("loadXMLDoc();",timeoutPeriod); 
} 
*/ 

這是一些代碼是做job.On在普通PC的工作,但在移動瀏覽器帶來了problems.Anyu想法

+0

不要提供您提供的少量信息:我們需要查看一些代碼和問題的確切說明。 –

+0

你可以在服務器上跟蹤你的請求嗎?我的意思是你的服務器可以收到你的請求,從移動或這種事情? –

回答

0

如果問題是與AJAX ,它不會導致佈局問題。相反,問題很可能與您使用AJAX檢索的數據的實現有關。然而,我不能提供更多的見解,因爲我不知道你在做什麼,也從未遇到過這樣的問題。