首先,我是新的 JQM 和一个非常弱的 jQuery 编码器,但我正在寻找一些帮助......
我有一个运行良好的 jQuery Mobile 站点,并且刚刚在其中实现了 jQuery 选项卡。我通过标签内调用脚本,脚本如下:
$('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();
});
});
在我使用附加到 Flickr 画廊的 CMS 组件的分页脚本之前,这一切在我的网站上都可以正常工作,它会更改浏览器中的地址栏。
我看到 JQM 处理自定义 JS 文件的方式略有不同,但我希望那里的人能够为像我这样的新手提供更多支持。