0

简单的问题(我希望)我有一系列 jQuery 选项卡,其中一些是 ajax 调用:

<ul>
        <li><a href="#item">Item</a></li>
        <li runat="server" id="specLi"><a href="#spec">Spec</a></li>
        <li runat="server" id="productionLi"><a href="ajaxProduction.aspx?itemId=<%=itemId %>"><span>Production</span></a></li>
        <li runat="server" id="qualLi"><a href="ajaxQuality.aspx?itemId=<%=itemId %>"><span>Quality</span></a></li>
        <li runat="server" id="customersLi"><a href="#customers"><span>Customers</span></a></li>
        <li runat="server" id="salesLi"><a href="ajaxSales.aspx?itemId=<%=itemId %>"><span>Sales</span></a></li>
        <li runat="server" id="suppliersLi"><a href="#suppliers"><span>Suppliers</span></a></li>
        <li runat="server" id="purchasesLi"><a href="ajaxPurchases.aspx?itemId=<%=itemId %>"><span>Purchases</span></a></li>
        <li runat="server" id="stockLi"><a href="ajaxStockMovement.aspx?itemId=<%=itemId %>"><span>Stk Movt</span></a></li>
        <li runat="server" id="NotesLi"><a href="#notes"><span>Notes</span></a></li>
    </ul>

我想使用#anchor 链接到特定的选项卡 - 效果很好。但是对于 Ajax 选项卡,我无法指定 #anchor 名称。在呈现的 html 中,我得到 ui-tabs-1 ui-tabs-2 等

有没有办法在#之后指定锚文本?

提前致谢

戈登

[更新] 明白了,只需要在 a 标签中添加一个 name="linkname"

4

2 回答 2

0

如果你想添加namea标签,你可以有这样的东西。

文档:$.attr()

$(function(){

   $("ul li a").each(function(){  //just limiting to all anchors inside the list

         $(this).attr("name","add some name to it");

   });

});
于 2013-02-11T09:53:39.557 回答
0

尝试这个:

$(function(){    
   $("ul li a").each(function(){
         name=$(this).attr("href");
         $(this).attr("name",name);//this will set the href attribute of element to name attribute    
   });    
});
于 2013-02-11T10:08:26.917 回答