jQuery附加一个类的元素

时间:2017-05-03 18:25:32

标签: javascript jquery html dom

我正在尝试编写一个jQuery代码,它将“projects-content”类中的文本追加到“.projects-text”中(而不是附加“hello world”段落)

$(".projects-carousel .owl-nav").click(function(){
       $('.projects-text').append('<p>Hello world</p>'
)
   });
<div class="projects-Wrapper">
  <div class="projects-content">
  <h3> This header should append in projects-text div </h3>
  <p>This is the text should append in projects-text div as well</p>
  </div>
    <div class="projects-img-wrapper">
    <a class="popup-youtube" href="#"><img src="img/projects/1.png" alt="Jey The Dog"></a>
  </div>
</div>

  <div class="projects-text"> 
   
   <!-- Here should a text from ".projects-content" append -->
  
  </div>

1 个答案:

答案 0 :(得分:1)

您可以使用jquery的html方法获取&amp;设置html内容。它将包含HTML标记。如果您只想获取文本,可以使用text方法。 替换此

$('.projects-text').append('<p>Hello world</p>');

$('.projects-text').html($('.projects-content').html());