我正在使用此代码调用 javascript 函数,然后重定向 PHP 页面。
<script type='text/javascript'>
mixpanel.track('login: Login ', {'page name' : document.title, 'url' : window.location.pathname});
</script>;
<?php
header("Location:".$domain_name."/services.htm");
?>
但是这段代码不起作用,如果我不重定向,那么 js 函数可以正常工作。
我也尝试过ob_start();
,ob_end_flush();
但没有任何效果。如何在重定向之前使用 JS 函数。我是 JavaScript 和 PHP 标头函数的新手。