我试图从 javascript 调用 php 函数,代码如下所示,
<html>
<head></head>
<body>
<script type="text/javascript" >
function header()
{
<?php
header("Location:http://www.google.com");
?>
}
</script>
<br/><input type="button" onclick= "header();" value="Google" />
</body>
</html>
当我之前运行此代码时,即单击按钮,页面会自动定向到 www.google.com ,我的要求是单击按钮并定向到相应的页面,此代码有什么问题?