我在使用标签时遇到了问题。我尝试实现标签功能,例如作为站点http://mashable.com。
选项卡可以悬停并通过悬停显示选项卡内容。如果我单击选项卡,选项卡内容应该被隐藏,不可见 UNTIL mouseleave <li>
。如果我再次鼠标输入,将显示选项卡内容。
我遇到了组合悬停和单击的问题。使用此代码,我遇到了以下问题:
1. 页面加载
- 如果在页面加载期间标签上下移动,尽管单击标签,但由于 mouseenter 会显示标签内容
2. 单击标签<li>
- 单击标签有时会显示标签内容,有时不显示 -没有规则;必须不显示
- 如果未显示选项卡内容,如果我移动鼠标(我没有 mouseleave <li>
),有时会显示选项卡内容,有时不显示
HTML:
<div id="tabs">
<ul id="tabstest">
<li id="tab1" class="tab" onclick="location.href='\ttest1.php';" style="cursor:pointer;"><strong>Test 1</strong></li>
<li id="tab2" class="tab"> <a href="/Test/test2.php" class="tab_link" ><strong><br>Test 2</strong></a></li>
<li id="tab3" class="tab"> <a href="/Test/test3.php" class="tab_link" ><strong>Test 3</strong></a></li>
<li id="tab4" class="tab" onclick="location.href='\ttest4.php'; " style="cursor:pointer;" ><strong><br>Test 4</strong></li>
<li id="tab5" class="tab"> <a href="/Test/test5.php" class="tab_link" ><strong><br>Test 5</strong></a></li>
<li id="tab6" class="tab"> <a href="/Test/test6.php" class="tab_link" ><strong><br>Test 6</strong></a></li>
</ul>
</div>
<div id="tabcontents">
<div id="tab1content" class="tabcontent">
<p>tab1 content</p>
</div>
<div id="tab2content" class="tabcontent">
<p>tab2 content</p>
</div>
<div id="tab3content" class="tabcontent">
<p>tab3 content</p>
</div>
<div id="tab4content" class="tabcontent">
<p>tab4 content</p>
</div>
<div id="tab5content" class="tabcontent">
<p>tab5 content</p>
</div>
<div id="tab6content" class="tabcontent">
<p>tab6 content</p>
</div>
</div>
查询:
$(window).load(function(){
$(".tab").focus(function() {
var tabId = $(this).attr('id');
$("#" + tabId + "content").hide();
});
$(".tabcontent").focus(function() {
$(this).hide();
});
$(".tab").click(function() {
var tabId = $(this).attr('id');
$("#" + tabId + "content").hide();
});
$(".tabcontent").click(function() {
$(this).hide();
});
$(".tab").mouseenter(function() {
var tabId = $(this).attr('id');
$("#" + tabId + "content").show();
});
$(".tabcontent").mouseenter(function() {
$(this).show();
});
$(".tab").mouseleave(function() {
var tabId = $(this).attr('id');
$("#" + tabId + "content").hide();
});
$(".tabcontent").mouseleave(function() {
$(this).hide();
});
});