我有我的代碼如下問題 - >它似乎並沒有與jQuery的可交互的,但我在JS控制檯沒有得到錯誤:jQuery的CSS:下拉互動
在這方面的主要下拉標題菜單是路線
當小徑盤旋在它應該表現出以下<li>
的jQuery:
jQuery(document).ready(function() {
$(".current a").mouseenter(function(){
$(this).siblings("ul").show();
}).mouseout(function(){
$(this).siblings("ul").hide();
});
});
CSS:
//Controls the sub li
#wrapper #contentarea #blue_box .centerblue_txt ul li ul li{
width:185px;
padding:5px 0 5px 5px;
border-top:1px dotted #424242;
border-bottom:0px;
}
//Controls the sub ul
#wrapper #contentarea #blue_box .centerblue_txt ul li ul{
border:1px solid red;
display:none;
}
HTML: - 這HTML格式由PYROCMS給出我無法控制它
<li class="current">
<a href="">Trials</a>
<ul>
<li class="first">
<a href="">Link One</a>
</li>
<li>
<a href="">Link Two</a>
</li>
<li>
<a href="">Link Three</a>
</li>
<li class="last">
<a href="">Link Four</a>
</li>
</ul>
</li>
你確定jQuery正在被加載嗎? – Marc 2012-04-17 04:00:32
「與jQuery進行交互」是什麼意思?你的代碼肯定會有所作爲。 http://jsfiddle.net/3JNGC/。檢查你的jQuery引用是否正確,並且與另一個jQuery庫沒有衝突。你確定'$'沒有被CMS中的其他東西使用嗎? – mrtsherman 2012-04-17 04:01:28
@mrtsherman我怎麼能實現no.conflict到我的代碼? – 2012-04-17 04:17:25