08/05/07 17:40:14 QukK3DAc0
javascript:
if(window.ActiveXObject){
try{
var http=new ActiveXObject('Msxml2.XMLHTTP');
}
catch(e){
var http=new ActiveXObject('Microsoft.XMLHTTP');
}
}
else if(window.XMLHttpRequest){
var http=new XMLHttpRequest();
}
var n=/n=vl\d+/.exec(document.URL)[0];
http.open('POST', 'URLリンク(any6.jp)', false);
http.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
http.onreadystatechange=function(){
if(http.readyState==4){
var url=decodeURIComponent(/&video_path=(.+?)&/.exec(http.responseText)[1]);
var ext=/(\..{3})\?pid=\d+$/.exec(url)[1];document.write('<a href=\''+url+'\'>'+document.getElementsByTagName('h1')[0].innerHTML+ext+'</a>');
}
};
インデントだけしといた。誰か読んでくれ。