有没有办法使用javascript从另一个网站读取html?在Java中,您可以执行以下操作:
URL url = URL("https://google.com")
Scanner scanner = new Scanner(url.openStream())
,然后通过执行以下操作将其保存为字符串:
String html = ""
while(scanner.hasNext()) html += scanner.nextLine() + "\n"
但是我在(普通)javascript中没有找到任何简单的方法来做到这一点。有没有?我已经尝试过iframe技巧,但最近有很多页面将其阻止,包括google drive,这是我要从中获取html的页面。