我有一个PHP文件,我想将参数从它传递给JavaScript文件,看起来很简单,但我无法执行它,我的方式不起作用,我不知道为什么!! < / p>
这些是2个文件的代码加上另一个用于查看结果的HTML代码,`
php文件..
<?php
$ser = "server";
?>
<script type="text/javascript">var server = "<?= $ser ?>";</script>
<script type="text/javascript" src="new4.js"></script>
new4.js(Java脚本文件)
function myFunction() {
alert("server: " + server);
}
这是查看结果的HTML文件
<!DOCTYPE html>
<html>
<body>
<script src="new4.js"></script>
<p>Click the button to demonstrate line-breaks in a popup box.</p>
<button onclick="myFunction()">Try it</button>
</body>
</html>
答案 0 :(得分:0)
您将无法访问第二个HTML文件中的server
JavaScript变量,除非您在此文件中实际声明它或者您以某种方式包含声明。
<!DOCTYPE html>
<html>
<body>
<?php
$ser = "server";
?>
<script type="text/javascript">var server = "<?= $ser ?>";</script>
<script src="new4.js"></script>
<p>Click the button to demonstrate line-breaks in a popup box.</p>
<button onclick="myFunction()">Try it</button>
</body>
</html>
(new4.js不需要改变)。
PS:您可能需要将文件重命名为PHP,或确保您的Web服务器将HTML解析为PHP。
替代方法(我自己没有尝试但应该工作)。
<!DOCTYPE html>
<html>
<body>
<script type="text/javascript" src='constants.php'></script>
<script src="new4.js"></script>
<p>Click the button to demonstrate line-breaks in a popup box.</p>
<button onclick="myFunction()">Try it</button>
</body>
</html>
<强> constants.php 强>
<?php
header('Content-Type: text/javascript');
$ser = "server";
echo "server = \"$ser\"";