`
PBFox
  • 浏览: 67725 次
  • 性别: Icon_minigender_1
  • 来自: China
文章分类
社区版块
存档分类
最新评论

ruby on rails : 截取字符串,用 more代替

阅读更多
页面中的description比较长, 想截取一部分,后面的用more代替,点击more的时候显示全部。这种情况比较长见。代码如下:

在application.helper中写个方法:

def truncate_with_more (text, cutoff, id)
if text.length > cutoff
result = text[0, cutoff]
result += "<span id='text_more_link_#{id}'>&hellip;"
result += "<a href='#' onclick='$(\"text_more_#{id}\").show(); $(\"text_more_link_#{id}\").hide(); return false;'>"
result += "more</a></span>"
result += "<span id='text_more_#{id}' style='display: none;'>"
result += text[cutoff, text.length]
result += "</span>"
else
result = text
end

result
end

页面中调用:
<%= truncate_with_more post.description, 200, "post_#{post.id}" %>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics