我有一个网址,我想在Javascript变量中检索访问该网址时生成的HTML DOM(页面的所有代码)。
我该如何做到这一点?我猜测是使用HTML的get或post?有人可以用jQuery给个例子吗?
每次我这样做一个$.get或$.post:
$.get("http://www.google.ca", function(result) { alert(result); alert($(result).html()); });
$.post("http://www.google.ca", function(result) { alert(result); alert($(result).html()); }, "xml");
每个电话中的第一个警报出现空白,第二个警报出现为null。有什么想法?
Thanks,
Matt