日期:2014-05-16 浏览次数:20471 次
<?php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>PHP如何做到自动发送GET请求?</title>
</head>
<body>
<br/><a href="https://127.0.0.1/aaa.htm?a=1&b=33&c=1">连接</a>
</body>
</html>
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>PHP如何做到自动发送GET请求?</title>
</head>
<body>
<a id="url" href="https://127.0.0.1/aaa.htm?a=1&b=33&c=1">连接</a>
<script type="text/javascript">
window.location = document.getElementById("url").href;
</script>
</body>
</html>