0

我有一个菜单,我需要将每个菜单项的 href 设置为内容项 id,如下所示:

$(this).attr("href") = $(".element").attr("id");

我怎样才能?

4

3 回答 3

3

要更改 href,请使用以下内容:

$("a").attr("href", $(".element").attr("id"))

祝你好运。

于 2013-02-07T00:18:52.210 回答
1
$(this).attr("href",$(".element").attr("id"));
于 2013-02-07T00:18:48.187 回答
1

如果你有多个菜单项,你可以使用 jquery 的 each 函数:

$(".yourMenuItemsSelector").each(function(){

    $(this).attr("href",$(".element").attr("id"));

});
于 2013-02-07T00:21:45.580 回答