使用 jQuery 创建滑动表单。问题是表单滑到空白页。它应该滑动到的页面卡在第一页上。网站在这里...www.entrilab.com。当我检查元素时没有出现错误。即使没有错误,函数仍然没有调用吗?有问题的功能如下
$('#navigation').show();
$('#navigation a').bind('click',function(e){
var $this = $(this);
var prev = current;
$this.closest('ul').find('li').removeClass('selected');
$this.parent().addClass('selected');
current = $this.parent().index() + 1;