我对此感到有点厌倦。
我不知道为什么它一直告诉我文件没有定义,因为声明和它的用法都在同一范围内。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.2.4/mootools-yui-compressed.js"></script>
<script type="text/javascript">
var txtFile = new XMLHttpRequest();
var inputarea = document.inputtext;
txtFile.open("GET", "start.txt", true);
txtFile.onreadystatechange = function() {
// Makes sure the document is ready to parse.
if(txtFile.readyState === 4) {
// Makes sure it's found the file.
if(txtFile.status === 200) {
allText = txtFile.responseText;
// Will separate each line into an array
lines = txtFile.responseText.split("\n");
for(i = 0; i < lines.length; i++) {
var s = lines[i];
if(s.indexOf("nextpage") > -1) {
// Line is there
} else {
// Line is not there
inputarea.value += s;
}
}
}
}
}
txtfile.send();
</script>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<textarea name="inputtext" rows="4" cols="20" readonly="readonly">
</textarea>
<div>TODO write content</div>
</body>
</html>
修改
问题已经解决,但我现在又收到了另一个错误:
Uncaught TypeError: Cannot read property 'value' of undefined (00:27:29:739 | error, javascript)
at txtFile.onreadystatechange (public_html/index.html:29:42)
答案 0 :(得分:3)
检查拼写txtfile.send()
应为txtFile.send()
,请注意f
第二次错误更新
错误是因为document.inputtext
未定义,我认为它意味着是一个html元素输入框。如果这是正确的,则可能值得为id
输入inputtext
,然后使用var inputarea = document.getElementById('inputtext')
进行调用。虽然如果要这样做,将整个脚本放在window.onload
回调中是值得的,因此当脚本运行时输入会出现在页面上。
答案 1 :(得分:0)
在致电txtFile.onreadystatechange
之前,您应该定义txtFile.open
。不确定这是不是你的问题。