|
两段隐藏销售连接的代码,好处嘛需要的朋友都会明白的。
HTML:
<html>
<head>
<title>Loading page…</title>
<meta http-equiv=”refresh” content=”2;URL=http://你的连接”>
<script>
url=’http://你的连接’;
if(document.images) { top.location.replace(url); }
else { top.location.href=url; }
</script>
</head>
<body>Loading
<a href=http://你的连接>page</a>…
</body>
</html>
PHP:
<?php
header(”Location: 你的连接”);
?> |
评分
-
查看全部评分
|