我有以下代碼,以獲得JavaScript模式中的引用不支持PHP的網頁,並將其傳遞到遠程服務器:http://site.com/ref.php
與$ref = $_GET['referrer'];
我得到引用我想要也位置即在哪裏安裝腳本在我的遠程服務器的腳本與$loc = $_GET['location'];
,所以我必須在此腳本中插入document.location
,但我不知道現在如何。文件引用位置的JavaScript遠程php服務器
<script>
var src = "http://site.com/ref.php"
src += "?referrer=" + escape(document.referrer);
src += "&anticache=" + new Date().getTime();
var body = document.getElementsByTagName("body")[0];
var image = document.createElement("img");
image.src = src;
body.appendChild(image);
</script>
我已嘗試添加腳本 src += "?location=" + escape(document.location);
但不工作 任何幫助嗎?
愛antichache技術 – SinistraD 2011-05-28 13:29:01
有沒有必要給該圖像元素追加到身體 - 只需設置「src」屬性將導致HTTP事務。 – Pointy 2011-05-28 13:30:18