我的网页左侧有一个包含类别的列表,右侧有一个包含项目的列表。带有项目的列表有一个名为cat的属性,值为数字。
单击该类别应该将我滚动到具有相同categoryid的第一个项目。
任何提示? :)
这是html:
asp:Repeater runat="server" ID="repCategory" OnItemDataBound="CategoryItemRepeater">
<HeaderTemplate>
<ul class="menuListUl">
</HeaderTemplate>
<ItemTemplate>
<li>
<div id="catItem" runat="server"></div>
</li>
</ItemTemplate>
<FooterTemplate></ul></FooterTemplate>
</asp:Repeater>
<div id="menuList">
<asp:Repeater runat="server" ID="repFooditems" OnItemDataBound="MenuItemRepeater">
<ItemTemplate>
<div class="menuItem" id="menuItem" runat="server">
<div runat="server" class="itemNumber" id="ItemId"></div>
<div runat="server" class="itemName" id="itemName"></div>
<div runat="server" class="itemDescription" id="itemDescriptionLbl"></div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
Codebehind:
所属分类:
var lbl = (HtmlGenericControl)e.Item.FindControl("catItem");
lbl.Attributes.Add("catId",""+rest.CategoryId);
ITEMLIST:
var menuItem = (HtmlGenericControl)e.Item.FindControl("menuItem");
menuItem.Attributes.Add ("cat","cat"+item.Item.Category.FirstOrDefault().CategoryId);
jquery的:
$('.menuListUl li div').bind('click', function ()
{
var catId = $(this).attr('catid'); //The categoryid on the element clicked.
// Now: find the first element with the same cat id
var element = ""; The element found.
$('html, body').animate({
scrollTop: element.offset().top
}, 2000);
});
答案 0 :(得分:2)
这会选择'foobar'作为catid的元素。这似乎是你想要的吗?
$('.menuListUl li div[catid="foobar"]')