我是 jQuery AJAX 函数的新手。我想在我的用户单击按钮时将其重定向到网页。请不要告诉我将按钮定位到网页,因为我必须在 php 文件中做一些工作......我当前的代码是:-
TEST.html 文件:-
<html>
<head>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("test2.php");
});
});
</script>
</head>
<button>Get External Content</button>
<div id="div1"></div>
</html>
现在我的 test2.php 文件如下:-
<?php header("Location:http://google.com"); ?>
我是 AJAX jQuery 的初学者。所以,尽管听起来很傻,但请不要对我的帖子投反对票。由于显而易见的原因,我的代码不起作用。请帮我。提前致谢。任何帮助将不胜感激。