我有一个菜单,我需要将每个菜单项的href设置为内容项ID,如下所示:
$(this).attr("href") = $(".element").attr("id");
我该怎么办?
答案 0 :(得分:3)
要更改href,请使用以下内容:
$("a").attr("href", $(".element").attr("id"))
祝你好运。
答案 1 :(得分:1)
$(this).attr("href",$(".element").attr("id"));
答案 2 :(得分:1)
如果你有多个菜单项,你可以使用jquery的每个功能:
$(".yourMenuItemsSelector").each(function(){
$(this).attr("href",$(".element").attr("id"));
});