<div id="calcwrapper">
<img class="sugarcube" src="images/sugarcube.png" width="13" height="17">
<div id="drinks">
<a id="drink1" href=""><img src="images/drinkicon1.png" width="84" height="81"></a><div class="drink1"></div>
</div>
</div>
在上面的示例中,只有一个饮料按钮,但我的代码包含八个按钮。每个都有一个相应的同名的div类。我正在尝试做的是“动态”抓取锚标签的id(id =“drink1”),将克隆糖块图像(img class =“sugarcube”...)附加到等效的类名div(类= “drink1”)。我希望这听起来并不令人困惑。也许下面不成功的尝试会让你对我想要实现的目标有所了解。
尝试1
$(".sugarcube").clone().attr("class", "sugarcube" + i).appendTo($(this).parent((".drink1").attr("class")));
尝试2(尝试通过控制台找到有效的解决方案)
var className = $(this).attr("id");
console.log(className);
console.log($(this).parent().children("div").hasClass(className));
我搜索了Google和StackOverflow,但没有找到任何代码示例。谢谢你的帮助。
这是完整的HTML代码上下文...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.min.js"></script>
<script src="js/jquery-animate-css-rotate-scale.js"></script>
<script>
$(function() {
$(".sugarcube").hide();
var max = 8;
function animateSugarcubes() {
for (var i=1; i<=max; i++) {
$(".sugarcube" + i).css("position", "absolute");
$(".sugarcube" + i).css("top", Math.ceil(Math.random() * (50 - 20) + 20));
$(".sugarcube" + i).css("left", Math.ceil(Math.random() * (85 - 40) + 40));
$(".sugarcube" + i).hide();
}
}
$("#drinks a").click(function() {
for (var i=1; i<=max; i++) {
// Attempt 1
$(".sugarcube").clone().attr("class", "sugarcube" + i).appendTo($(this).parent().children($(this).attr("id")));
// Attempt 2 test code.
var className = $(this).attr("id");
console.log($(this).parent().children("div").hasClass(className));
}
return false;
});
animateSugarcubes();
});
</script>
</head>
<body>
<div id="calcwrapper">
<img class="sugarcube" src="images/sugarcube.png" width="13" height="17">
<div id="drinks">
<a id="drink1" href=""><img src="images/drinkicon1.png" width="84" height="81"></a><div class="drink1"></div>
<a id="drink2" href=""><img src="images/drinkicon2.png" width="84" height="81"></a><div class="drink2"></div>
<a id="drink3" href=""><img src="images/drinkicon3.png" width="84" height="81"></a><div class="drink3"></div>
<a id="drink4" href=""><img src="images/drinkicon4.png" width="80" height="81"></a><div class="drink4"></div>
<a id="drink5" href=""><img src="images/drinkicon5.png" width="84" height="81"></a><div class="drink5"></div>
<a id="drink6" href=""><img src="images/drinkicon6.png" width="84" height="81"></a><div class="drink6"></div>
<a id="drink7" href=""><img src="images/drinkicon7.png" width="84" height="81"></a><div class="drink7"></div>
<a id="drink8" href=""><img src="images/drinkicon8.png" width="84" height="81"></a><div class="drink8"></div>
</div>
</div>
</body>
</html>
请注意,锚标记使用id(id =“drink1”),而div使用类(class =“drink1”)
答案 0 :(得分:4)
如果我按字面意思回答你的问题,那么我可能会得到类似的结果:
var drinksLinks = $("#drinks a"); // get list of all a tags inside drinks
drinksLinks.each(function() { // perform function for each element
var element = $(this); // get jquery object for the current element
var id = element.attr("id"); // get the id
var div = element.find("." + id); // find the element with class matching the id
$(".sugarcube").clone().appendTo(div);
});
但是,如果要尝试查找某个特定元素,则应尽量避免按类引用某些内容。我的建议是实际上只是假设诸如drink1之类的div总是在a标签旁边,那么你可以做类似的事情:
var sugarcube = $(".sugarcube");
var drinksLinks = $("#drinks a"); // get list of all a tags inside drinks
drinksLinks.each(function() {
var div = $(this).next(); // get the element next to the a tag
sugarcube.clone().appendTo(div);
});
要记住几件事:
希望这有帮助!
答案 1 :(得分:2)
如果您使用带有标识符的元素,则使用“class”而不是“id”。 “id”应该是唯一的。在给定的示例中,它用于di和a标签。
不是个好主意! &lt; - 抱歉,我认为有两个同名的ID
这对我有用。但是我可能没有正确理解你的问题
$('#drink1').clone().attr('id','drink2').appendTo('#drinks')
答案 2 :(得分:1)
这样的事情怎么样:
var id = $(this).attr('id');
var targetDiv = $('.' + id);
Int他的实例目标div将是具有与该ID
匹配的类名的div