我想使用这个:
$("#content").load("/path/include.php");
要加载php include,但我需要先使用js函数来更新变量。
在普通的PHP中,它看起来像:
<?php $variable = 'variable'; include(/path/include.php); ?>
在包含文件之前,如何更新该变量?
答案 0 :(得分:0)
使用AJAX加载第二个脚本,并传递包含JavaScript值的参数:
$("#content").load("/path/caller.php", {param: 'something'});
caller.php:
<?php
$variable = $_POST['param'];
include('/path/include.php');