2
我創建第三方的cookie <img src="http://example.com/test.php" />
第三方cookie的 - 從其他域
test.php的閱讀:
if($_GET['r']) {
header('Content-type: image/gif');
// echo transparent 1x1 pixel
exit;
} else {
setcookie('name', md5(time()), time()+60*60*24*30, '/');
$url = 'http://example.com/test.php?r=1';
header('Location: '.$url);
exit;
}
此代碼創建第三方的Cookie。是否有任何方法通過JavaScript從不同於example.com的域中讀取創建的cookie?