请帮我!被卡了很长时间。我在我的 html 文件中编写了完全相同的代码,但它根本不起作用。
我在 HEAD 部分下插入了 javascript。
的HTML:
<div id="content">
<div id="colone">
<div id="introbox" class="test">
</div>
<div id="infobox" class="test">
<div style="border-bottom:1px solid #666;width:160px;margin-top:20px;margin-left:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666;">
INFO
</div>
</div>
</div>
<div id="coltwo">
<div id="aboutbox" class="test">
<div style="border-bottom:1px solid #666;width:250px;margin-top:20px;margin-left:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666;">
ABOUT
</div>
</div>
<div id="gallerybox" class="test">
<div style="border-bottom:1px solid #666;width:260px;margin-top:20px;margin-left:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666;">
GALLERY
</div>
</div>
</div>
<div id="colthree">
<div id="contactbox" class="test">
<div style="border-bottom:1px solid #666;width:180px;margin-top:20px;margin-left:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666;">
CONTACT US
</div>
</div>
<div id="extrabox" class="test">
<div style="border-bottom:1px solid #666;width:160px;margin-top:20px;margin-left:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666;">
EXTRAS
</div>
</div>
</div>
JavaScript:
$(document).ready(function() {
$(".test").hover(function() {
$(".test").not($(this)).css({
"opacity": 0.1
});
}, function() {
$(".test").css({
"opacity": 1
});
});
});