假设有一个网站,例如foo-example.com
我想获取顶部index
页面的整个HTML源代码(http://foo-example.com/index.html)
index.html的代码是:
HTML源代码(http://foo-example.com/index.html)
<html>
<title>Hello, world</title>
<head>
</head>
<body>
<embed type="application" id="records" link="xxxxxxxxxxxxxxxx">
</body>
</html>
如何获取整个HTML源代码,并解析链接包装的字符串?
然后我想最后像alert(strings);
那样弹出警告。