我正在尝试创建一个网页,当您单击“试用”按钮打开另一个网页,然后计算该网页中的字符数。现在,这个网页成功打开了我要求它打开的网页,但网页的长度是“未定义”。我不想摆脱XMLHttpRequest或它下面的代码行,因为我打算扩展这个网页,使其能够在以后通过某些特定的关键字解析网页。这是代码:
<!DOCTYPE html>
<html>
<body>
<p>Click the button to open a new browser window.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
window.open("https://www.gutenberg.org/files/1065/1065-h/1065-h.htm");
var req = new XMLHttpRequest();
req.open('GET', 'https://www.gutenberg.org/files/1065/1065-h/1065-h.htm', false);
alert(req.length);
}
</script>
</body>
</html>
任何人都可以提供给我的任何帮助将不胜感激。祝你有愉快的一天。