function createXHR(){
return window.XMLHttpRequest?
new XMLHttpRequest():
new ActiveXObject(“Microsoft.XMLHTTP”);
}
function getappkey(url){
xmlHttp = createXHR();
xmlHttp.open(“GET”,url,false);
xmlHttp.send();
result = xmlHttp.responseText;
id_arr = ”;
id = result.match(/namecard=\”true\” title=\”[^\"]*/g);
for(i=0;i
id_arr += sum + '||';
}
↓ Read the rest of this entry…