在javascript函数中重新加载页面上运行的php脚本代码

时间:2017-01-07 11:54:28

标签: javascript php

当点击按钮CONTINUE时,我正在使用变量名 fromSelectStudentPage 将会话初始化为1。

当我重新加载页面只是为了测试会话,即使没有调用函数,也会初始化为1。

<form id="forStudent">
     <button type="button" on-click="onSelectStudent();">CONTINUE</button>
</form>

function onSelectStudent() {
    if(checkStudType()) {
        <?php $_SESSION['fromSelectStudentPage'] = '1'; ?>
        $('form#forStudent').submit();  
    }
}

0 个答案:

没有答案