<script language="javascript">
function getTxtString(src){
var xmlHttp;
var rs;
var isie = false;
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
isie = true;
} else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
try{
if(isie == false ){
xmlHttp.open("GET", src, false);
xmlHttp.overrideMimeType("text/html;charset=shift_jis");
xmlHttp.send(null);
return xmlHttp.responseText;
}else{
xmlHttp.open("GET", src, false);
xmlHttp.send(null);
if(xmlHttp.readyState == 4){
if (xmlHttp.status == 200 || xmlHttp.status == 0){
return Recenspace(xmlHttp.responseBody);
}
}
}
} catch (exception){
return exception.message;
}
}
function Recenspace(Html){
rs=new ActiveXObject("ADODB.RecordSet");
rs.fields.append("a",201,1);
rs.open();
rs.addNew();
rs(0).appendChunk(Html);
rs.update();
return rs(0).value;
rs.close();
}
alert(getTxtString("bb.txt"));
</script>
这一段代码单独运行正确,但是包含在其他页面,提示没有权限。
<script scr=""></script>