对于客户端站点,我们如何使用其选定的子菜单更改菜单的值。

时间:2016-01-13 10:20:40

标签: javascript php jquery menu submenu

我想用其选定的子菜单更改菜单项的值。我先用JS做过这个。但是在加载页面时它再次设置为菜单值。

有没有办法更改当前Session的Menu值。

如果有人能帮助我,我将非常感激。

2 个答案:

答案 0 :(得分:1)

感谢您的回答,现在我找到了答案,这就是:

<div class="container">

Dropdowns的

  

.dropdown类用于指示下拉菜单。

  

使用.dropdown-menu类实际构建下拉菜单。

  

要打开下拉菜单,请使用按钮或带有.dropdown-toggle和data-toggle =&#34;下拉&#34;类的链接。


  

<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown"><?php echo $page[basename($_SERVER['PHP_SELF'])] ?>
<span class="caret"></span></button>
<ul class="dropdown-menu">
<?php 
$page=array('index.php'=>'Home','html.php'=>'Html','css.php'=>'CSS','javascript.php'=>'Javascript');
unset($page[basename($_SERVER['PHP_SELF'])]);
foreach ($page as $key => $value) {
  ?>
    <li><a href="<?php echo $key ?>"><?php echo $value ?></a></li>
  <?php
}
 ?>

</ul>

答案 1 :(得分:0)

由于您没有粘贴代码来根据需要调整代码,因此我只能向您展示JavaScript的sessionStorage是如何工作的。 W3schools有an example and explanation。如果页面无效,您可以查看jsfiddle

sessionStorage对象等于localStorage对象,但它只存储一个会话的数据。当用户关闭特定浏览器选项卡时,将删除数据。

<!DOCTYPE html>
<html>
<head>
<script>
function clickCounter() {
if(typeof(Storage) !== "undefined") {
    if (sessionStorage.clickcount) {
        sessionStorage.clickcount = Number(sessionStorage.clickcount)+1;
    } else {
        sessionStorage.clickcount = 1;
    }
    document.getElementById("result").innerHTML = "You have clicked the button " + sessionStorage.clickcount + " time(s) in this session.";
} else {
    document.getElementById("result").innerHTML = "Sorry, your browser does not support web storage...";
}
}
</script>
</head>
<body>
<p><button onclick="clickCounter()" type="button">Click me!</button></p>
<div id="result"></div>
<p>Click the button to see the counter increase.</p>
<p>Close the browser tab (or window), and try again, and the counter is reset.</p>
</body>
</html>