我需要将一个值从 PHP 传递回我的 javascript。我已经尝试了很多东西,但无法让它发挥作用。这是我的代码。
<script type="text/javascript">
life = {};
life.anjaxEnter = function(finished) {
$.ajax({
dataType:"json",
type:"POST",
data:mydata,
url:"myurl.php",
async:false,
success:life.receiveResult,
});
setTimeout("location.href='myredirectionurl'", 1000); // Redirect after 1 second
}
life.receiveResult = function(result) {
alert(result);
}
</script>
我需要将 PHP 文件中的特定值传递回 life.receiveResult,然后将其添加到重定向 url。