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.
このようなリンクのリストがあります
リンクテキストから文字列 " (foo)" を削除するにはどうすればよいですか?
$('a:contains(foo)').text(function(_, currentText){ return currentText.replace('foo', ''); });
http://jsfiddle.net/EgHkr/
別の選択肢
$('li:nth-child(2)').replaceWith('<li>Item 2</li>');