0

ページ全体は、メインインデックスファイル内のPHPインクルードです。メインページにJavaScriptを配置する必要がありますか?または外部のJavaScriptファイル?私はliを間違って参照していますか?

<ul>
<li class="about"><a href="index.php?about"><h1>about</h1></a></li>
<li class="team"><a href="index.php?team"><h1>team</h1></a></li>
<li class="training"><a href="index.php?training"><h1>training </h1></a></li>
<li class="courses"><a href="index.php?courses"><h1>courses</h1></a></li>
<li class="register"><a href="index.php?contact"><h1>contact</h1></a></li>
</ul>

<script type="text/javascript">
$("div").hover(
function () {
$(this).addClass("navhover");
},
function () {
$(this).removeClass("navhover");
}
); 
</script>

(外部CSSページ)

<script type="text/css">
#center .navhover {
   background:  url(images/active.jpg) no-repeat center center; 
}

#center .about {
 background: url(../images/about.jpg) no-repeat center center;
}
4

2 に答える 2

1

javascriptをスキップして使用してみませんか


li.about {
    background: url(../images/about.jpg) no-repeat center center;
}

li.about:hover {
    background:  url(images/active.jpg) no-repeat center center;
}

于 2010-10-28T11:19:39.993 に答える
0
<script type="text/javascript" src="script.js"></script>
<script>
$(function(){
    $("ul li").hover(function () {
          $(this).addClass("navhover");
        },function () {
          $(this).removeClass("navhover");
        }
    ); 
});

</script>
<ul>
<li class="about"><a href="index.php?about"><h1>about</h1></a></li>
<li class="team"><a href="index.php?team"><h1>team</h1></a></li>
<li class="training"><a href="index.php?training"><h1>training </h1></a></li>
<li class="courses"><a href="index.php?courses"><h1>courses</h1></a></li>
<li class="register"><a href="index.php?contact"><h1>contact</h1></a></li>
</ul>

私はこれを自分で試しましたが、完璧に機能しました

于 2010-10-28T10:09:06.340 に答える