当我在html页面上选择类别时,我正在尝试创建一个显示html页面图像的函数。这是我创建的功能:
.js文件
function getWorksContent(cat){
var _category = cat;
if (worksContentGot == 0) {
$.ajax({
type : 'POST',
url : '/images.html',
data : {category : _category},
beforeSend : function(){
worksContentGot = 1;
},
success : function(data){
$(".rightSide").html(data).fadeIn('slow');
worksContentGot = 0;
console.log(data);
}
});
}
}
这是html文件中类别的链接。
<div class="worksItem anim400" data-id="1" data-top="32vh" style="top:32vh;" data-cat="logo"><h2>Logo Tasarımı <span class="plus">+</span><span class="times">x</span></h2></div>
但我想为每个类别显示特定图像。我怎样才能做到这一点?谢谢!