• 締切済み

訪問済リンクを未訪問の状態に再び戻す方法

質問お願いします。 フレームで上部に組んだメニューボタンの訪問済リンクが、 ページを移動するごとに訪問済みが増えて、 どのページを現在、訪問しているのかわからなくなります。 訪問済リンクを未訪問の状態に再び戻す方法を教えてください。 CSS部分 body { background-color: #FFFFFF; margin:0; padding:0; } #menu{ position:absolute; top:0px; width:800px; height:219px; left:-1px; margin:0; padding:0; background-image:url(../topimage/title.gif); background-repeat:no-repeat; } #menu #bottom{ position:absolute; float:left; top:149px; width:800px; height:70px; left:0px; } #bottom ul{ list-style:none; padding:0; margin:0; } #bottom ul li{ padding:0; margin:0; float:left; } #bottom a.c,#bottom a.c:link { display:block; width: 115px; height:70px; background-image:url(../top/img/menu/b1.gif); background-repeat:no-repeat; background-position:0% 0%; } #bottom a.c:visited { background-position:100% 0%; } #bottom a.c:hover { background-position:33% 0%; } #bottom a.c:active { background-position:66% 0%; } 以下ボタン7つのソースがほぼ同じ為、省略します。 HTML部分 <div id="menu"> <div id="bottom"> <ul>  <li><a href="../new/top.html" target="main" class="c"></a></li>  <li><a href="../product/top.html" target="main" class="d"></a></li> <li><a href="../example/top.html" target="main" class="e"></a></li> <li><a href="../company/top.html" target="main" class="f"></a></li> <li><a href="../rinen/top.html" target="main" class="j"></a></li> <li><a href="../faq/top.html" target="main" class="g"></a></li> <li><a href="../info/top.html" target="main" class="h"></a></li> <li><a href="../recruit/top.html" target="main" class="i"></a></li> </ul> </div> </div>

みんなの回答

noname#100277
noname#100277
回答No.2

ブラウザの「履歴の削除」に成るので、ユーザーが実行しない限り無理。

md_fuji
質問者

お礼

ありがとうございます。全てのページを見終わると、メニューバーが、全部visitedになっているので、見終わって一定時間が経ったものは未訪問の状態に再び戻す方法があれば…と思い質問させて頂きました。

  • koke29
  • ベストアンサー率58% (114/196)
回答No.1

訪問者のことを考えるなら、パンくずリストとかをつけてあげるなど 現在どこにいるかを明記するっていう方が親切だとは思いますよー 未訪問に戻したら、今度はどこまで見たのかがわからなくなるんじゃ… と思いますよ 一応aタグのスタイル変更の仕方、参考URLに貼っておきます

参考URL:
http://www.shoshinsha.com/hp/ref/css/link_color.html
md_fuji
質問者

お礼

ご返答ありがとうございます。 パンくずリストは、フレームの下段についているのですが、 他のHPを見ていると、メニュー1から2に移動した際に、 現在地がメニュー2なので、メニュー2だけが訪問済みの状態で、 メニュー1は、未訪問の状態に戻っている仕組みでしたので、 他のメニューに移るタイミングか、一定時間経ったら、 訪問済みを未訪問にする方法はないかと探していました。 上部のフレームメニューが全てvisitedになって、どこにいるのか わからないような状態で困っています。

関連するQ&A