如何在onload事件中接收$ _SESSION变量作为参数

时间:2014-11-29 01:11:53

标签: javascript php session

我正在尝试接收一个SESSION变量作为onload事件中调用的javascript函数中的参数,但没有任何反应。

我的目标是更改最后输入的背景颜色。此输入位于侧栏上,按下的最后一个必须更改为不同的颜色,其余的必须变为白色。

如果有另一种方法可以做到这一点,我真的很想知道。感谢。

这是我的代码。

<body onload="identificar_hijo('divGeneral',<?php echo $_SESSION['name_sidebar'];?>)">
<?php //getting the $url of this page?>
<script type="text/javascript">    
    function identificar_hijo(divID,selectedID)
    {
        //using function getChildren() to identify the divs children and change background Colors.
    }
</script>        
    <form name="form1" enctype="multipart/form-data" action="<?php echo $url;?>" method="post">
        <div id="divGeneral" style="margin-left: 5%; margin-right: 5%;">
            <?php
            //saving the session variable
            $_SESSION['name_sidebar'] = $name_sidebar;              
            ?>
                <div id="<?php echo $name_sidebar;?>">
                    <input type="submit" name="<?php echo $name_sidebar;?>" id="<?php echo $name_sidebar;?>">
                </div><?php                
            }?>    
        </div></form></body>

1 个答案:

答案 0 :(得分:2)

您需要将PHP代码放入''

<body onload="identificar_hijo('divGeneral','<?php echo $_SESSION['name_sidebar'];?>')">