我想執行一個遠程javascript,將用戶重定向到我域中的另一個頁面,並將數據作爲查詢字符串傳遞。我想獲取傳遞到我的域上的頁面的這些數據。.getScript獲取javascript的重定向url
$.getScript('http://site.com/foo.js', function() {
//foo.js redirects to another page on my domain with data
// and i d like to capture that data from this function,
// at least if i find the parameters that passed on there, i ll be fine.
});
怎麼辦?
http://api.jquery.com/jQuery.getScript/
你能澄清一下這個重定向是怎麼發生的嗎? foo.js是否包含一個改變window.location.href的腳本? 當你說「作爲查詢字符串傳遞的數據」時,什麼是s? – Ryan 2010-05-09 05:18:35
foo.js重定向到我的頁面:mypage.aspx?a = 1&b = 2等等。 – DarthVader 2010-05-09 05:28:38
你被重定向了嗎?你需要什麼?改變重定向的查詢字符串? – GerManson 2010-05-09 08:00:48