如何在引用中获取引用文本?

时间:2017-09-30 22:30:01

标签: javascript jquery html

我使用jQuery在页面上循环引号,我想在每个blockquote中找到引用文本,我该怎么做呢?

我像这样循环遍历:



$('.comment_quote').each(function() 
{
  var actual_text = $(this).text();
  var content = $(this).outerHTML();

  if(actual_text.length > showChar) 
  {
    var html = '<span class="morecontent">' + content + '</span><a href="" class="morelink">' + moretext + '</a><br />';

    $(this).replaceWith(html);
  }
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<blockquote class="comment_quote"><cite>name</cite>the quoted test</blockquote>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

如果我理解正确的话,

$(this).find('cite').text()应该这样做。