|
|
|
สอบถามหนอ่ยครับ ทำไมทำการแก้ไขไฟล์ .js แล้ว FTP ขึ้น SERVER ปรากฎว่า ต้องทำการ Clear Cache Code ที่แก้จึงจะเปลี่ยนตาม |
|
|
|
|
|
|
|
Code (JavaScript)
// create the XMLHttpRequest object, according browser
function get_XmlHttp() {
// create the variable that will contain the instance of the XMLHttpRequest object (initially with null value)
var xmlHttp = null;
if(window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } // for Forefox, IE7+, Opera, Safari
else if(window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } // IE5 or 6
// else { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");}
if(xmlHttp == null) alert('your browser does not support jaavscript');
return xmlHttp;
}
function getCity(){
var country_id = document.getElementById("country_id").value;
var xmlhttp = get_XmlHttp();
if(xmlhttp == null){
return ;
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState==4) {
if (xmlhttp.status==200) {
var wrappingElement = document.createElement('div');
wrappingElement.innerHTML = xmlhttp.responseText;
var e = document.getElementById('city');
e.innerHTML = "";
e.innerText = "";
// e.removeChild(e.firstChild);
e.appendChild(wrappingElement);
}
}
};
xmlhttp.open("GET","search_city_search.php?mode=select_city&country_id="+country_id,true);
xmlhttp.send();
}
function getCity_add(){
var country_id = document.getElementById("country_id_add").value;
var xmlhttp = get_XmlHttp();
if(xmlhttp == null){
return ;
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState==4) {
if (xmlhttp.status==200) {
var wrappingElement = document.createElement('div');
wrappingElement.innerHTML = xmlhttp.responseText;
var e = document.getElementById('city_add');
e.innerHTML = "";
e.innerText = "";
// e.removeChild(e.firstChild);
e.appendChild(wrappingElement);
}
}
};
xmlhttp.open("GET","search_city.php?mode=select_city&country_id="+country_id,true);
xmlhttp.send();
}
function getCity_Export(){
var country_id = document.getElementById("country_id").value;
var xmlhttp = get_XmlHttp();
if(xmlhttp == null){
return ;
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState==4) {
if (xmlhttp.status==200) {
var wrappingElement = document.createElement('div');
wrappingElement.innerHTML = xmlhttp.responseText;
var e = document.getElementById('city');
e.innerHTML = "";
e.innerText = "";
// e.removeChild(e.firstChild);
e.appendChild(wrappingElement);
}
}
};
xmlhttp.open("GET","search_city_export.php?mode=select_city&country_id="+country_id,true);
xmlhttp.send();
}
สอบถามหนอ่ยครับ ทำไมทำการแก้ไขไฟล์ .js แล้ว FTP ขึ้น SERVER ปรากฎว่า ต้องทำการ Clear Cache Code ที่แก้จึงจะเปลี่ยนตาม
อยากรู้ว่าทำไมต้องทำการ Clear Cache ก่อนอ่ะครับ
แล้วแบบนี้เครื่อง Client USER ของผมต้องทำการ Clear Cache ด้วยไหม๊ครับ หรือว่าอีกสักพักมันจะใช้ได้เอง
Tag : - - - -
|
|
|
|
|
|
Date :
2015-03-16 16:17:48 |
By :
nut_ch31 |
View :
1170 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|