我需要在H2类productDescription之间放置一个div元素;

我的代码:



$(document).ready(function() {
  $('.productDescription').append($('<h2>'));
  $('.productDescription').prepend($('</h2>'));
});

<div class="productDescription">Bota cano curto d</div>





我需要:

<div class="productDescription"><h2>Bota cano curto d </h2></div>

最佳答案

尝试:

$('.productDescription').html("<h2>"+ $('.productDescription').html() +"</h2>");

关于javascript - 在div之间插入一个html元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30063605/

10-11 02:40