| 違反投稿 |
<div id="recentcomments"></div>
<script type="text/javascript">
<!--
var com_rss_url = 'http://blog.livedoor.jp/*****/recent_comments.xml';
function createHttpRequest(){
if(window.ActiveXObject){
try{return new ActiveXObject("Msxml2.XMLHTTP");}
catch(e){
try{return new ActiveXObject("Microsoft.XMLHTTP");}
catch(e2){return null;}
}
}
else if(window.XMLHttpRequest){return new XMLHttpRequest();}
else {return null;}
}
function requestFile(data, method, fileName, async)
{
var httpoj = createHttpRequest();
httpoj.open(method, fileName, async);
httpoj.onreadystatechange = function(){
if(httpoj.readyState == 4 && httpoj.status == 200){
on_loaded(httpoj);
}
}
httpoj.send(data);
} |