我想在用户点击它时从我的任何网址中删除/ groups /
背景故事是我有一个wordpress小部件,它显示页面链接(BP组),我希望用户被发送到我为每个组制作的页面,而不是他们点击(因为我无法制作主页) BuddyPress的)。
我将页面网址设置为与网页页面相同但没有/ groups /所以如果删除了该网页,则小部件会将用户发送到我的网页。
例如,访问者被发送到: http://focallocal.org/up-cycling-workshop-with-londons-homeless/ 代替 http://focallocal.org/groups/up-cycling-workshop-with-londons-homeless/
我已经研究了很多年了,这是我能想到的最好的(我不会说js):
'onclick="location.replace(/groups/,"")'
编辑请求的html:
关闭 活动,团体和项目 最新| 有效| 流行
<ul id="groups-list" class="item-list">
<li class="odd public is-admin is-member">
<div class="item-avatar">
<a href="h t t p://focallocal. org/groups/up-cycling-workshop-with-londons-homeless/" title="Up-cycling Workshop with the Homeless"><img src="h t t p://focallocal. org/wp-content/uploads/group-avatars/4/a4ce0d8153497b96869a9b46e7ff391f-bpthumb.jpg" class="avatar group-4-avatar avatar- photo" width="50" height="50" alt="Group logo of Up-cycling Workshop with the Homeless" title="Up-cycling Workshop with the Homeless"></a>
</div>
<div class="item">
<div class="item-title"><a href="h t t p://focallocal. org/groups/up-cycling-workshop-with-londons-homeless/" title="Up-cycling Workshop with the Homeless">Up-cycling Workshop with the Homeless</a></div>
<div class="item-meta">
<span class="activity">
active 1 week, 1 day ago </span>
</div>
</div>
</li>
<li class="even public is-admin is-member">
<div class="item-avatar">
<a href=" h t t p://focallocal. org/groups/public-relations-marketing-and-advertising-team/" title="Public Relations, Marketing and Advertising Team"><img src="http://focallocal.org/wp-content/uploads/group-avatars/2/05196f60439a3fe01b9855f267805180-bpthumb.jpg" class="avatar group-2-avatar avatar- photo" width="50" height="50" alt="Group logo of Public Relations, Marketing and Advertising Team" title="Public Relations, Marketing and Advertising Team"></a>
</div>
<div class="item">
<div class="item-title"><a href="h t t p://focallocal. org/groups/public-relations-marketing-and-advertising-team/" title="Public Relations, Marketing and Advertising Team">Public Relations, Marketing and Advertising Team</a></div>
<div class="item-meta">
<span class="activity">
active 1 month, 3 weeks ago </span>
</div>
</div>
</li>
<li class="odd
</ul>
<input type="hidden" id="_wpnonce-groups" name="_wpnonce-groups" value="e2870f6aee"><input type="hidden" name="_wp_http_referer" value="/"> <input type="hidden" name="groups_widget_max" id="groups_widget_max" value="300">
</div> </div></div><div id="tab_slide_background" class="tab_slide_corners_right"></div></div></div>
答案 0 :(得分:1)
我看到你正在使用jQuery,所以你可以这样做:
$('#groups-list a').each(function(){
var $this = $(this);
var href = $this.attr('href');
href = href.replace('groups/', '');
$this.attr('href', href);
});
你也可以这样做:
$('#groups-list a[href*="groups"]').each(function(){ this.href = this.href.replace('/groups', ''); });
纯JavaScript :
var anchors = document.querySelectorAll( "#groups-list a[href*='group']");
for (var i = 0; i < anchors.length; i++) {
var anchor = anchors[i];
anchor.href = anchor.href.replace('/groups', '');
}