我正在渲染RSS提要,每个内容部分的开头都有内容 - 它总是6个字符,我想用jQuery删除它。
Feed的特定位的内容位于列表标记中,因此<li>blahah Hello this is where I want to display from...</li>
摆脱“ blahah ”是我们的目标。
更新:
提供的jQuery工作得很好,但我无法弄清楚为什么它将所有列表元素拉出来就好像它们是内联的一样!
您是否能够解释为什么此示例中的li标记 - jsfiddle.net/GhazG/5在渲染时相互碰撞,而不是像这样显示 - jsfiddle.net/GhazG/6?
答案 0 :(得分:7)
这将删除页面上每个 <li>
元素的前6个字符。我想你会希望你的选择器专门针对有问题的<li>
。
// Select your <li> element
var $li = $('li');
// Get the text(), and call .substr() passing the number 6 as the argument
// indicating that you want to get the part of the string starting on
// index number 6 (the seventh character)
$li.text( $li.text().substr(6) );
试一试: http://jsfiddle.net/GhazG/
由于您在页面上有多个需要更新的<li>
元素,因此您应该使用each
循环执行此操作:
试一试: http://jsfiddle.net/GhazG/7/
$('li').each(function() {
var $th = $(this);
$th.text( $th.text().substr(6) );
});
如果通过javascript将项目附加到DOM,您还可以选择在执行追加之前删除字符。这可能是一种更好的方法。