gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 17:10:07 25 4
gpt4 key购买 nike

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

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

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

这是我的代码。

<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>

最佳答案

你需要把php代码放到'':

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

关于javascript - 如何在 onload 事件中接收 $_SESSION 变量作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27197857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com