用jQuery接近段落

时间:2018-12-21 13:42:26

标签: jquery html

我有这样的布局:

.w3-container.w3-card.w3-black.w3-round.w3-margin
 br
 img.w3-left.w3-circle.w3-margin-right(style="width:60px" src="/w3images/avatar6.png" alt="Avatar")
 span.w3-right.w3-opacity 32 min
 p= p.title 
 if p.picture
  img.w3-margin-bottom(src="images/"+p.picture style="width:100%")
 p= p.content
 if p.votes
  p.w3-input.w3-margin-bottom= p.votes.length    
   i.far.fa-thumbs-up(style='font-size:24px; padding: 5px;') 
 button.w3-button.w3-margin-bottom(type="button" id="test" onclick="voteFunc('"+username+"', '"+p._id+"')")

当我单击按钮时,我试图检索此paragrapgh p.w3-input.w3-margin-bottom= p.votes.length

中的文本

我正在尝试类似alert($(this).closest('#test').prev('p').text());的操作,但它会向我发送空警报

0 个答案:

没有答案