关于包含调用文件的几种方法
来源:
互联网
日期:2008-1-30
8.XMLHTTP <script> function getit(url){ with(new ActiveXObject("Microsoft.XMLHTTP")){ open("get",url,false,"","") send() viewfield.innerHTML=ResponseText } } </script> <button onClick=getit("index.asp")>index.asp</button> <span id="viewfield">内容暂缺</span> XMLHTTP方式需要注意,目标文件最好保存编码为Unicode或者UTF-8,否则会出现乱码。当然,还有解决的方法,用下面的函数把返回的ResponseText处理一下,只是这样效率比较低,文件较大时不推荐使用。
<script language=vbscript> function bytes2bstr(vin) strreturn = "" for i = 1 to lenb(vin) thischarcode = ascb(midb(vin,i,1)) if thischarcode < &h80 then strreturn = strreturn & chr(thischarcode) else nextcharcode = ascb(midb(vin,i+1,1)) strreturn = strreturn & chr(clng(thischarcode) * &h100 + cint(nextcharcode)) i = i + 1 end if next bytes2bstr = strreturn end function </script> 另外,XMLHTTP这种方法也可以在后台程序中用,不过要作相应修改
文章共9页: [ 1] [ 2] [ 3] [ 4] [ 5] [ 6] [ 7] [ 8] [ 9]
更多的关于包含调用文件的几种方法请到论坛查看: http://BBS.TC711.COM
【 双击滚屏 】 【 评论 】 【 收藏 】 【 打印 】 【 关闭 】
来源:
互联网
日期:2008-1-30
|
|
|