我想在用户使用Tab键移入下一个标签时创建功能。每个选项卡都包含一些文本框。当用户在选项卡1的最后一个文本框中按Tab键时,它将进入tab2的下一个文本框。我正在使用纯HTML css和jQuery创建选项卡。我没有使用jQuery UI的tab功能,但它是最新的jquery。以下是我的HTML。我正在使用ul和li创建选项卡。当我的标签放在第一个文本框中时,我如何进入下一个li。选项卡包含类似下拉列表,复选框,texboxes。注意:由于某些问题,我没有使用tabindex。我想用jquery创建) 为此我写了一个模糊功能。模糊功能将tabkey移动到下一个选项卡并关注下一个选项卡。但问题是当我们进入下一个选项卡时,我如何激活选项卡及其内容
<ul class='tabs'>
<li><a href='#tab1'>Tab 1</a></li>
<li><a href='#tab2'>Tab 2</a></li>
<li><a href='#tab3'>Tab 3</a></li>
</ul>
<div id='tab1'>
<ul class= "set2">
<li> test 1<asp:TextBox runat="server" ID="test1" /></li>
<li> test 2<asp:TextBox runat="server" onblur=move() ID="test2" /></li>
</ul>
</div>
<div id='tab3'>
<ul class= "set2">
<li> test 3<asp:TextBox runat="server" ID="test3" /></li>
<li> test 4<asp:TextBox runat="server" onblur=move() ID="test4" /></li>
</ul>
</div>
<div id='tab3'>
<ul class= "set">
<li> test 5<asp:TextBox runat="server" ID="test5" /></li>
<li> test 6<asp:TextBox runat="server" onblur=move() ID="test6" /></li>
</ul>
</div>
-script-
$(document).ready(function(){
$('ul.tabs').each(function(){
// For each set of tabs, we want to keep track of
// which tab is active and it's associated content
var $active, $content, $links = $(this).find('a');
// If the location.hash matches one of the links, use that as the active tab.
// If no match is found, use the first link as the initial active tab.
$active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]);
$active.addClass('active');
$content = $($active.attr('href'));
// Hide the remaining content
$links.not($active).each(function () {
$($(this).attr('href')).hide();
});
// Bind the click event handler
$(this).on('click', 'a', function(e){
// Make the old tab inactive.
$active.removeClass('active');
$content.hide();
// Update the variables with the new link and content
$active = $(this);
$content = $($(this).attr('href'));
// Make the tab active.
$active.addClass('active');
$content.show();
// Prevent the anchor's default click action
e.preventDefault();
});
});
答案 0 :(得分:0)
您可以通过以下方式模拟标签上的点击:
$('#tab1').click();
这里有一个类似的问题:jQuery simulate click on tab with code execution
因此,对于您的情况,onblur
事件可以重写为:
<li> test 6<asp:TextBox runat="server"
onblur="funcation(){move(); $('#tab1').click(); }"
ID="test6" /></li>
答案 1 :(得分:0)
尝试使用触发器(“点击”) 示例:$(“#tab2”)。触发器(“单击”)