我有一个菜单,我需要将每个菜单项的 href 设置为内容项 id,如下所示:
$(this).attr("href") = $(".element").attr("id");
我怎样才能?
我有一个菜单,我需要将每个菜单项的 href 设置为内容项 id,如下所示:
$(this).attr("href") = $(".element").attr("id");
我怎样才能?
要更改 href,请使用以下内容:
$("a").attr("href", $(".element").attr("id"))
祝你好运。
$(this).attr("href",$(".element").attr("id"));
如果你有多个菜单项,你可以使用 jquery 的 each 函数:
$(".yourMenuItemsSelector").each(function(){
$(this).attr("href",$(".element").attr("id"));
});