<html>
<head>
<script type="text/javascript" src="jquery-1.6.1.js"></script>
<script>
$('a').click(function(e) {
e.preventDefault();
document.location.href='http://www.redirectlink.com?ref='+this.href;
return false;
});
</script>
</head>
<?php
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, 'http://192.168.0.14:8081/home/');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$curl_response = curl_exec($ch);
curl_close($ch);
echo $curl_response;
?>
這應該工作嗎?它捲曲頁面,然後當你點擊頁面上的鏈接時,它應該重定向到http://www.redirectlink.com?ref='+ this.href捲曲部分有效,但不重定向。它仍然需要我原來的網址。 jquery-1.6.1.js文件與所有其他文件位於同一目錄中。請檢查這個錯誤
編輯:問題修復。需要準備好JavaScript。
-1問題標題 – 2011-05-18 10:38:39