admin管理员组文章数量:1344322
I'm destroying myself over this. Not the must experienced ind js. But this should be simple right?
I want to wrap each element in my 'arr'-array in <div class="mongol"></div>
and append it to the div#testBox
. Im using jQuery.each
to do so, but I am not getting anything:
<script src=".3.1/jquery.min.js"></script>
<script type='text/javascript'>
var arr = ["one", "two", "three", "four", "five"]
jQuery.each(arr, function() {
$(this).append("#testBox").wrap("<div class='mongol'></div>");
});
</script>
I'm destroying myself over this. Not the must experienced ind js. But this should be simple right?
I want to wrap each element in my 'arr'-array in <div class="mongol"></div>
and append it to the div#testBox
. Im using jQuery.each
to do so, but I am not getting anything:
<script src="https://cdnjs.cloudflare./ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type='text/javascript'>
var arr = ["one", "two", "three", "four", "five"]
jQuery.each(arr, function() {
$(this).append("#testBox").wrap("<div class='mongol'></div>");
});
</script>
If i alert(this)
in my jQuery.each-function then it alerts every element just fine. I don't get it.
What i am trying to achieve:
<div id="testBox>
<div class=" mongol ">one</div>
<div class="mongol ">two</div>
<div class="mongol ">three</div>
<div class="mongol ">four</div>
<div class="mongol ">five</div>
</div>
Share
edited Apr 19, 2019 at 16:31
double-beep
5,51919 gold badges40 silver badges49 bronze badges
asked Feb 15, 2011 at 13:00
Jonas ThomsenJonas Thomsen
1033 silver badges10 bronze badges
2 Answers
Reset to default 7Are you confusing append() with appendTo()? The code you posted will append the testBox
element to each of your array items, which is probably not what you want (and won't work anyway). Try:
jQuery.each(arr, function(index, item) {
jQuery("<div class='mongol'></div>").text(item).appendTo("#testBox");
});
var arr = [ "one", "two", "three", "four", "five" ]
jQuery.each(arr, function(index, value) {
$("#testBox").append("<div class='mongol'>" + value + '</div>');
});
That works if you have a <div> like that in your Site
<div id="testBox"></div>
本文标签: javascriptWrapping and appending an arrayelement by using jQueryeachStack Overflow
版权声明:本文标题:javascript - Wrapping and appending an array-element by using jQuery.each - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772120a2536311.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论