在jQuery .load()内容之后使用$ _SESSION变量

时间:2016-06-21 14:32:21

标签: php jquery

这是我的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函数,它不再适用。

你有理由吗?

感谢。

0 个答案:

没有答案