我有这个代码用于显示来自MYSQL的数据。我可以用innerHTML填充div,但是当我使用+ =然后它会连接数组中的所有值。但我需要在div中创建新元素。我该如何实施呢?
jQuery(document).ready( function() {
$(".dropdown-item").click( function() {
var data = { action: 'get_data',
id: $(this).attr('id')
};
var parent= document.getElementById('info-block bg-grey m-b-2 p-a');
var name = document.getElementsByClassName('h4 underline-sm')[0];
var job = document.getElementsByClassName('m-b-1')[3];
var phone=document.getElementsByClassName('m-b-0')[6];
var image= document.getElementsByClassName('col-sm-4 text-xs-right m-b-1')[0];
jQuery.ajax({
cache: false,
url: '/wp-admin/admin-ajax.php',
data: data,
dataType:'JSON',
method: 'POST',
success: function(response) {
$.each(response, function(key, value){
//
name.innerHTML=response[key].firstname + ' ' + response[key].lastname;
job.innerHTML ='<b>' + $.trim(response[key].job_title) + ' <br>Tööruum: ' + $.trim(response[key].room) + '<br/><a href="mailto:' + $.trim(response[key].email) + '>"' + $.trim(response[key].email)+ '</a></b>' ;
phone.innerHTML=$.trim(response[key].phone) + ' ' + $.trim(response[key].cell_phone);
image.innerHTML='<img src="'+ $.trim(response[key].image) +'" class="rounded-circle lg" alt="">';
});
}
});
});
});
我还要从HTML中添加div来显示我需要填充和创建循环的div。
<div class="info-block bg-grey m-b-2 p-a-2"> <!--parent div-->
<h4 class="h4 underline-sm"> </h4> <!--response[key].firstname+ ' ' response[key].lastname-->
<div class="col-sm-8 text-xs-left">
<p class="m-b-1"></p> <!--'<b>' + $.trim(response[key].job_title) + ' <br>Tööruum: ' + $.trim(response[key].room) + '<br/><a href="mailto:' + $.trim(response[key].email) + '>"' + $.trim(response[key].email)+ '</a></b>' -->
<p class="m-b-0"></p> <!--response[key].phone + ' ' + response[key].cell_phone-->
</div>
<div class=" col-sm-4 text-xs-right m-b-1">
<img src="" class="rounded-circle lg" alt=""> <!--to src response[key].image-->
</div>
</div>
我不需要有人去做这项工作,但有人可以解释如何使用createelement,以及如何使用DOM元素创建父div的父div。
感谢大家花时间思考我的问题。
答案 0 :(得分:2)
你可以使用jQuery append函数来做到这一点,这是一个简单的例子:
$('.h4').append(response[key].firstname + ' ' + response[key].lastname);
OR
$('.underline-sm').append(response[key].firstname + ' ' + response[key].lastname);
答案 1 :(得分:0)
每次你需要创建一个具有特定值的新div时,我建议.clone()你的div:
$.each(response, function(key, value){
var clonedEle = $('.info-block.bg-grey.m-b-2.p-a-2').clone();
clonedEle.find('.h4.underline-sm').text(value.firstname+ ' ' + value.lastname);
...........
您的最终代码将是:
jQuery(document).ready( function() {
$(".dropdown-item").click(function() {
var data = { action: 'get_data',
id: $(this).attr('id')
};
jQuery.ajax({
cache: false,
url: '/wp-admin/admin-ajax.php',
data: data,
dataType:'JSON',
method: 'POST',
success: function(response) {
$.each(response, function(key, value){
var clonedEle = $('.info-block.bg-grey.m-b-2.p-a-2').clone();
clonedEle.find('.h4.underline-sm').text(value.firstname+ ' ' + value.lastname);
clonedEle.find('.m-b-1').append('<b>' + $.trim(value.job_title) + ' <br>Tööruum: ' +
$.trim(value.room) + '<br/><a href="mailto:' + $.trim(value.email) + '>"' + $.trim(value.email)+ '</a></b>');
clonedEle.find('.m-b-0').text(value.phone + ' ' + value.cell_phone);
clonedEle.find('img.rounded-circle.lg').attr('src', value.image);
clonedEle.insertAfter('.info-block.bg-grey.m-b-2.p-a-2:first');
});
}
})
})
});
var response = [{firstname: 'firstname1', job_title: 'job_title', room: 'room', email: 'email', phone: 'phone', cell_phone: 'cell_phone', image: 'image'},
{firstname: 'firstname2', job_title: 'job_title', room: 'room', email: 'email', phone: 'phone', cell_phone: 'cell_phone', image: 'image'}]
$.each(response, function(key, value){
var clonedEle = $('.info-block.bg-grey.m-b-2.p-a-2').clone();
clonedEle.find('.h4.underline-sm').text(value.firstname+ ' ' + value.lastname);
clonedEle.find('.m-b-1').append('<b>' + $.trim(value.job_title) + ' <br>Tööruum: ' +
$.trim(value.room) + '<br/><a href="mailto:' + $.trim(value.email) + '>"' + $.trim(value.email)+ '</a></b>');
clonedEle.find('.m-b-0').text(value.phone + ' ' + value.cell_phone);
clonedEle.find('img.rounded-circle.lg').attr('src', value.image);
clonedEle.insertAfter('.info-block.bg-grey.m-b-2.p-a-2:first');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="info-block bg-grey m-b-2 p-a-2"> <!--parent div-->
<h4 class="h4 underline-sm"> </h4> <!--response[key].firstname+ ' ' response[key].lastname-->
<div class="col-sm-8 text-xs-left">
<p class="m-b-1"></p> <!--'<b>' + $.trim(response[key].job_title) + ' <br>Tööruum: ' + $.trim(response[key].room) + '<br/><a href="mailto:' + $.trim(response[key].email) + '>"' + $.trim(response[key].email)+ '</a></b>' -->
<p class="m-b-0"></p> <!--response[key].phone + ' ' + response[key].cell_phone-->
</div>
<div class=" col-sm-4 text-xs-right m-b-1">
<img src="" class="rounded-circle lg" alt=""> <!--to src response[key].image-->
</div>
</div>
答案 2 :(得分:0)
只是一个示例首先使用id包装器创建一个包装器div并在变量中创建所需的html并附加到包装器中。例如
<div id="wrapper"></div> //this is your wrapper which holds all the html you want to insert
然后在js
var html = `<div>
<h2>`
+ $.trim(response[key].job_title) +
`</h2>`
`<p class="`+response[key].firstname+ `">`
+ $.trim(response[key].phone) +
`<p>
</div>`
$("#wrapper").append(html);
它将附加所需的html内部包装器。每个新的html都将附加在包装器中,但在前面的html下面。希望这会给你一些想法