是否有任何方法可以重定向到另一个页面? 我曾经使用过“ window.location.href = DownlinkPage”
我想访问下行页面,然后获取页面文件信息
像fileLink和fileName
有什么方法可以访问downlLinkPage并从文件中获取信息?
答案 0 :(得分:0)
window.location.assign()
是一种实现方法。例如,
window.location.assign("http://example.com");
重定向到example.com。
如果要从历史记录中删除当前页面,请将assign
替换为replace
。
答案 1 :(得分:0)
如果要模拟某人单击链接,请使用
location.href
如果要模拟HTTP重定向,请使用
location.replace
例如:
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
,但是之后的代码将无法执行,整个页面及其上下文都将被释放。 您需要下载页面,解析并从中提取所需信息。 使用jQuery,您可以简单地:
$.get("downlinkPage", function(data, status){
$($.parseHTML(data)).filter('your desire query');
});