我使用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;
答案 0 :(得分:1)
$(this).find('cite').text()
应该这样做。