[ jquery 文档处理 appendTo(content) ] 此方法用于把所有匹配的元素追加到另一个指定的元素集合中
Posted 窗棂博客记录
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ jquery 文档处理 appendTo(content) ] 此方法用于把所有匹配的元素追加到另一个指定的元素集合中相关的知识,希望对你有一定的参考价值。
把所有匹配的元素追加到另一个指定的元素元素集合中。
实际上,使用这个方法是颠倒了常规的$(A).append(B)的操作,即不是把B追加到A中,而是把A追加到B中。
在jQuery 1.3.2中,appendTo, prependTo, insertBefore, insertAfter, 和 replaceAll这个几个方法成为一个破坏性操作,返回值是所有被追加的内容,而不仅仅是先前所选中的元素。所以,要选择先前选中的元素,需要使用end()方法,参见例二。
实例:
<html lang=‘zh-cn‘>
<head>
<title>Insert you title</title>
<meta http-equiv=‘description‘ content=‘this is my page‘>
<meta http-equiv=‘keywords‘ content=‘keyword1,keyword2,keyword3‘>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type=‘text/javascript‘ src=‘./js/jquery-1.12.1.min.js‘></script>
<style type="text/css">
*{margin:0;padding:0;}
html{font:400 15px/1.2em ‘Courier New‘;color:#666;width:750px;margin:25px auto;}
ul{list-style:none;}
.hover{color:#FF96EC;}
</style>
<script type=‘text/javascript‘>
$(function(){
$(‘.active‘).appendTo($(‘#append‘));// $(‘.active‘).html().appendTo(‘div‘);
});
</script>
</head>
<body>
<div id=‘demo‘>
<div class=‘noClassDemo‘>
<ul class=‘list‘>
<li>Index value :</li>
<li>Index value :</li>
<li>Index value :</li>
<li>Index value :</li>
<li>Index value :</li>
<li>Index value :</li>
<li class=‘active‘>Index value :</li>
<li>Index value :</li>
<li>Index value :</li>
</ul>
<div id=‘append‘></div>
</div>
</div>
</body>
</html>
以上是关于[ jquery 文档处理 appendTo(content) ] 此方法用于把所有匹配的元素追加到另一个指定的元素集合中的主要内容,如果未能解决你的问题,请参考以下文章