Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面,其中的链接如下所示:
<a class="title" href="#">Recipes using <b>veal</b> - My Recipes</a>
我想从这些链接中删除所有“-我的食谱”,离开(在这种情况下):
Recipes using <b>veal</b>
我已经尝试了很多变化$('a.title').replace( "- My Recipes", "" );
$('a.title').replace( "- My Recipes", "" );
我想我的目标一定是错误的。
你可以做:
$('a.title').each(function(){ $(this).html($(this).html().replace( "- My Recipes", "" )); });
jsfiddle
.html 方法可以处理它:
$('a.title').html(function ( i, html ) { return html.replace( "- My Recipes", "" ); });
http://jsfiddle.net/QxbDK/2/
可能更好的是改为更改返回此内容的内容,以便一开始就不存在。