使用ajax技術實現點擊按鈕,將TXT文本里的內容通過彈出框顯示到頁面上 /*事件會在頁面載入完成後觸發。*/ <script> window.onload = function(){ /*獲取按鈕的id*/ var oBth=document.getElementById(‘btn’); /*點擊 ...
使用ajax技術實現點擊按鈕,將TXT文本里的內容通過彈出框顯示到頁面上
/*事件會在頁面載入完成後觸發。*/
<script>
window.onload = function(){
/*獲取按鈕的id*/
var oBth=document.getElementById(‘btn’);
/*點擊按鈕觸發的函數*//
oBth.onclick = function(){
/*打開瀏覽器*/
var xhr = new XMLHttpRequest();
/*在地址欄輸入地址,這裡的1txt代表需要打開的內個txt文件*/
xhr.open(‘get’,‘1.txt’,true)
/*提交*/
xhr.send();
/*等伺服器返回內容*/
xhr.onreadystatechange = function(){
if(xhr.readystate==4){
alert(xhr.responseText);
}
}
}
}
</script>
<body>
<input type="button" value="按鈕" id="btn">
</body>
以上就是使用ajax實現通過彈出窗打開一個text文件