更改了div的HTML内容(包含带有其类的标签)后,我无法在jQuery中通过其类选择新元素。此函数修改div的HTML内容:
function getPostdetail(idofpost) {
$.ajax({
url: 'offer_inf.php',
type: 'POST',
data: 'postid=' + idofpost,
dataType: 'json',
success: function(information) {
$('.band').html('<h1>' + information.titre + ' | ' + '<span style="color:#edcb21;">' + information.prix + '</span></h1>');
$('.table-1-row-1').html(information.image);
$('.table-1-row-2').html(information.imagelist);
$('.table-1-row-3').html(information.detail);
$('.post-comment-title').css({ 'visibility': 'visible' });
console.log($('.post-view').text());
}
});
}
getPostdetail(ident);
information.detail
是示例内容:
<p>
<i class="material-icons">content_paste</i><br>
<span class="post-date"># 12 AOU 2018</span>
<span>et vue <span class="post-view">1000</span> fois</span><br><br>
Une belle maison, avec peinture verte. piscine et jardin. meublé avec décoration. chateau d'eau incluse, carreaux et marbre dans la pièce. toute ce qu'il faut pour vos reves. electricite avec panneau solaire et bien d'autres.<br>
</p>
我的问题是,当我在$ .ajax成功回调中执行console.log ($ ('.post-view'). Text ());
时,我什么也没得到。请帮助我
答案 0 :(得分:0)
console.log($($(information.detail), '.post-view').text());