※ ChatGPTを利用し、要約された質問です(原文:ツリーメニューを2個つづけると)
ツリーメニューを2個つづける方法
<script type="text/JavaScript">
<!--
function treeMenu(tName){
tMenu = document.getElementById(tName).style;
tMenu.display=(tMenu.display=='none')?"block":"none";
}
//-->
</script>
</head>
<body>
<img src="icon.gif">
<font color="FF6600"><a href="JavaScript:treeMenu('treeMenu1')">GENSUI</a>
<ul id="treeMenu1" style="display:none;margin-top:0px;">
<a href="a.html" target="right">1</a><br>
<a href="b.html" target="right">2</a></ul>
ここまでで1つめ。下から2つめ
<script type="text/JavaScript">
<!--
function treeMenu(tName){
tMenu = document.getElementById(tName).style;
tMenu.display=(tMenu.display=='none')?"block":"none";
}
//-->
</script>
</head>
<body>
<img src="newicon.gif">
<font color="FF6600"><a href="JavaScript:treeMenu('treeMenu1')">ABYSS</a>
<ul id="treeMenu1" style="display:none;margin-top:0px;">
<a href="a.html" target="right">3</a><br>
<a href="b.html" target="right">4</a></ul>
こうすると、2つめの【ABYSS】をクリックすると上の【GENSUI】のツリー『1』『2』がでてきます。(GENSUIを押したときと同じ状態になる)
どうすればちゃんと【ABYSS】をクリックして『3』『4』がでてくれますか?