如何從Javascript
訪問PHP
變量,其中PHP
代碼存在於單獨的文件中?使用Javascript訪問PHP變量
我的代碼是:
<?php
$res = "OK";
?>
<html>
<head>
<script type="text/javascript">
function myFunc()
{
res = <?php echo json_encode($res); ?>;
console.log("res = " + res);
}
</script>
</head>
<body>
<button onclick="myFunc()">Click</button>
</body>
</html>
現在,如果我將我的php
代碼名爲a.php
一個單獨的文件,我怎麼能訪問$res
?假設我打電話a.php
與GET
請求(XMLHttpRequest
對象)。
它括在引號..'RES =「';' –