我面临一个奇怪的问题。当我单击按钮时,id="fashion"
我正在将图像写入 div cashback_merchant
。在这里我指定了float:left
. 但是我的图像没有跟随这部分,它们显示在另一个下方。
这是 CSS 部分:
<style>
.cashback_merchant {
height: 100px;
width: 220px;
float: left;
padding: 10px;
margin-left: 10px;
margin-top: 10px;
border-radius: 10px;
}
</style>
这是我的 HTML:
<div class="cashback_merchant">
</div>
这是我的 ajax 部分:
$.post('get_category', data = { type : 'Fashion' }, function( data ) {
$.each( data, function( item, i) {
var image_path = "<?php echo base_url();?>assets/images/"+i.image_name;
$(".cashback_merchant").hide().append('<img class = "image"
src="'+image_path+'"/>').fadeIn('slow');
});
},'json');