js基礎(chǔ):javascript遠(yuǎn)程讀取文本文件Txt
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
下面是text.htm文件代碼 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head> <title>無(wú)標(biāo)題頁(yè)</title> <script type="text/javascript"><!-- //頁(yè)面級(jí)XMLHttp對(duì)象 var xmlhttp; //向服務(wù)器發(fā)送信息函數(shù) function getPage(pageURL) { xmlhttp = createXMLHttp(); if (xmlhttp) { xmlhttp.onreadystatechange = setPageData; xmlhttp.open('GET', pageURL); xmlhttp.send(null); }else{ alert("XMLHttpRequest對(duì)象為空"); } } //回調(diào)函數(shù),獲得從服務(wù)器回發(fā)的文檔信息并顯示在disp層中 function setPageData(){ if (xmlhttp.readyState == 4 && xmlhttp.status == 200){ var word = bytes2BSTR(xmlhttp.responseBody); document.getElementById("disp").innerHTML = word ; } } //創(chuàng)建XMLHttp對(duì)象,用于讀取遠(yuǎn)程文檔 function createXMLHttp(){ try { return new ActiveXObject ("Microsoft.XMLHTTP"); }catch(e){ try { return new XMLHttpRequest(); }catch(e) { return null; } } return null; } // --></script> <script language="vbscript" type="text/vbscript"> 'VBScritp腳本語(yǔ)言, 未完待續(xù)
該文章在 2010/8/18 10:03:11 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |