代码拉取完成,页面将自动刷新
<meta charset="utf-8">
<script type="text/javascript">
/** XMLHttpRequest兼容性函数
** @input : none
** @output: XMLHttpRequest对象
**/
function createxmlhttp(){
if (window.XMLHttpRequest){ // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else{ // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
return xmlhttp;
}
/** 获取远程脚本的内容
** @input : url - 所要获取的URL地址
** @output: 脚本内容
**/
function get_script(url){
var xmlhttp=createxmlhttp();
xmlhttp.open("GET",url,true);
xmlhttp.send();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4){
if(xmlhttp.status==200){
console.log("请求成功: "+xmlhttp.responseText)
//return xmlhttp.responseText;
}
else{
console.log("雅蠛蝶,请求失败了,5秒后重试");
setTimeout("Get_Script('"+code+"')", 5000);
}
}
}
}
get_script('https://ss0.bdstatic.com/-0U0bnSm1A5BphGlnYG/tam-ogel/3d905b3d-6653-4cf8-80fc-86c41bb12200.js')
</script>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。