试图获取divs
可见的类名,然后prepend
获取我得到的类名的小数。任何帮助都会很棒,谢谢。
这是我到目前为止所拥有的。
$('#imagefiles ul li img').click(function() {
var open = $(".open:visible").attr("class");
var n = open.split(",");
alert(n);
});
只有一个div
是可见的,并且div
有两个类名。
像这样获取类名的全部意义在于,我可以append
将图像放到打开的文件夹<div class="edititable">
中。当我尝试这段代码时,什么也没有发生。有什么想法吗?
$('#imagefiles ul li img').click(function() {
//Get the source of the image that was clicked
var img = $(this).attr('src');
//Grab the class name of the opened folder and prepend a decimal to it.
var classes = $(".open:visible").attr("class").split(" ");
var classesWithDot = "";
$.each(classes, function (index, value) {
classesWithDot += " ." + value;
});
$(' + classesWithDot + ').find('.edititable').append('<img src="' + img + '" style="width:30%; height:30%;" ">');
});