私のjQueryコード:
$(function()
{
$(".third-categories").hide();
});
$(function()
{
$(".second-categories").hover(function() {
$(this).next(".third-categories").show("slow");},
function(){
$(this).next(".third-categories").hide("slow");}
);
});
$(function()
{
$(".third-categories").mouseover(function(){(".third-categories").show("slow");});
});
私の HTML コード: 私は smarty テンプレートで書いていますが、衣装は次のようになります:
<ul class="second-categories">
<ul class="second-categories">
<ul class="third-categories" style="display: none;">
<li style="padding-left: 13px;">
</ul>
<ul class="second-categories">
<ul class="second-categories">
<ul class="third-categories" style="display: none;">
<li style="padding-left: 13px;">
<li style="padding-left: 13px;">
</ul>
<ul class="second-categories">
</html>
「第 2 カテゴリ」の UL にマウスを合わせると、「第 3 カテゴリ」の UL が表示されます。これは発生していますが、マウスをその上に置いたときに「第 3 カテゴリ」の UL が表示されたままになるようにします。私はすべてを試しましたが、何が問題なのかわかりません...誰かが助けていただければ幸いです...ありがとう!