這是一個有很多文字的體育網站,我將在以後的文章中進行整理。希望使用javascript來保存一個網頁作爲文本文件
,我所遇到的唯一代碼:
<html>
<body>
<script language="JScript">
<!--
function open()
{
var result = string.Empty;
using (var webClient = new System.Net.WebClient())
result = webClient.DownloadString("http://some.url");
var myObject, afile;
myObject = new ActiveXObject("Scripting.FileSystemObject");
afile = myObject.OpenTextFile("F:\\sports.txt", 8, true, 0);
afile.write (result);
afile.close();
}
-->
</script>
Open a text stream for the file sport.txt
<form name="myForm">
<input type="Button" value="Open File" onClick='open()'>
</form>
</body>
</html>
任何幫助,將不勝感激,我可以根據需要在其他語言寫了。 請指導我!
可能重複[使用JavaScript保存客戶端機器上的文本文件](http://stackoverflow.com/questions/9717214/save-text-file-on-client-machine-using-javascript) – Quentin 2013-02-21 15:59:42
出於安全原因,你永遠不會得到(可靠的,跨瀏覽器)訪問到用戶的文件系統。你最好的選擇是用一個文本產生一個單獨的頁面,並提供一個下載選項。 – 2013-02-21 16:00:41
@Quentin - 不,這不是 – PitaJ 2013-02-21 16:01:16