我有像下面的php文件
action.php的?ID = 1
<?php
echo $_GET['id'];
?>
我有javascript代码,如下所示
<script>
var msg = [I want php file output to store in this variable]
alert(msg);
</script>
我该怎么办?无论如何?
答案 0 :(得分:1)
您可以使用AJAX实现此目的。例如使用jQuery AJAX。 link
实施例: 的script.js
var varFromPhp = null;
$.ajax({
type : "POST",
url : "getVar.php",
data : {'exampleVar' : 5},
dataType : 'json', // here you can specify what format of the data you expect from the server
success : function(data) {
varFromPhp = data.res;
},
error : function(data) {
}
});
getVar.php
<?php
$v = null;
if (isset($_POST['exampleVar']))
$v = $_POST['exampleVar'];
// do some stuff with the variable and the put it into an array
$ret = array();
$ret['res'] = $ret;
echo json_encode($ret);
?>
答案 1 :(得分:1)
如果文件由PHP解析器解析,只需将PHP变量作为字符串输出到JS变量中。
对于PHP 5.4及更高版本,您可以使用short echo标记:
var msg = '<?= $_GET['id'] ?>';
答案 2 :(得分:0)
尝试。
<script>
var msg = [<?php echo $_GET['id'];?>];
alert(msg);
</script>