我将 var 值放入 php 代码中。我想将它访问到包含的 test.js 文件中。
<?php
session_start();
$var=$_SESSION['my_id']; // I want to access $var into test.js included below
?>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="test.js"></script>
<!-- AddThis Smart Layers END -->
</head>
<input type="submit" onclick="func();"> Button </input> //This function call test.js
<body>
如何将 $var 访问到 test.js?