加载庞大的数据块并不是一个好的计划,但是如果需要的话,以下是如何使用jQuery$.ajax()函数来实现的概述。<html><head><script src="jquery.js"></script><script>getTxt = function (){ $.ajax({ url:'text.txt', success: function (data){ //parse your data here //you can split into lines using data.split('\n') //an use regex functions to effectively parse it } });}</script></head><body> <button type="button" id="btnGetTxt" onclick="getTxt()">Get Text</button></body></html>