私はそれからパラメータをJavaScriptファイルに渡したいPHPファイルを持っていますが、それは単純ですが実行できません。なぜか分からない! PHPファイルからJavaScriptファイルに変数を渡す
これら
はPHPファイル..
<?php
$ser = "server";
?>
<script type="text/javascript">var server = "<?= $ser ?>";</script>
<script type="text/javascript" src="new4.js"></script>
new4.js(のJavaスクリプトファイル) `,, 2つのファイルに加えて結果を表示するには、別のHTMLコードのコードです
function myFunction() {
alert("server: " + server);
}
そして、これは結果
<!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>
を表示するHTMLファイルです
この回答を参照してくださいhttp://stackoverflow.com/questions/2928827/access-php-var-from-external-javascript-file –
ですかPHPの短いオープンタグを有効にしていますか? –
@JayBlanchardはい.. –