집 >
기사 > 웹 프론트엔드 > html은 텍스트 파일 content_javascript 기술을 읽습니다.
html은 텍스트 파일 content_javascript 기술을 읽습니다.
- WBOY원래의
- 2016-05-16 19:20:22979검색
<script> <BR>Function bytes2BSTR(vIn) <BR> strReturn = "" <BR> For i = 1 To LenB(vIn) <BR> ThisCharCode = AscB(MidB(vIn,i,1)) <BR> If ThisCharCode < &H80 Then <BR> strReturn = strReturn & Chr(ThisCharCode) <BR> Else <BR> NextCharCode = AscB(MidB(vIn,i+1,1)) <BR> strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode)) <BR> i = i + 1 <BR> End If <BR> Next <BR> bytes2BSTR = strReturn <BR>End Function <BR></script> <script> <BR>var xmlUrl = new ActiveXObject('Microsoft.XMLHTTP'); <BR>xmlUrl.Open('GET','1.txt'); <BR>xmlUrl.Send(); <BR>setTimeout('alert(bytes2BSTR(xmlUrl.ResponseBody))',2000); <BR></script>
성명:본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.