这是我的index.php
页面结构:
<?php
session_start();
include("lang/".$_SESSION['lang'].".php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
...
</head>
<body>
<a href="#" data-module="home">
<div id="content"></div>
</body>
<script src="jquery.js"></script>
<script src="script.js"></script>
</html>
我有一块js code
来加载右键单击的模块。
$('a[data-module]').click(function(event) {
event.preventDefault();
var module = $(this).attr('data-module');
$('#content').load('modules/' + module + '.php');
});
我的问题是:
在每个模块页面上,我使用$_SESSION
个变量。但是使用.load()
jQuery函数,它不再适用。
你有理由吗?
感谢。