[ jquery 文档处理 prepend(content|fn) ] 此方法用于向每个匹配的元素内部前置内容,这是向所有匹配元素内部的开始处插入内容的最佳方式

Posted 窗棂博客记录

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ jquery 文档处理 prepend(content|fn) ] 此方法用于向每个匹配的元素内部前置内容,这是向所有匹配元素内部的开始处插入内容的最佳方式相关的知识,希望对你有一定的参考价值。

向每个匹配的元素内部前置内容,这是向所有匹配元素内部的开始处插入内容的最佳方式

实例:

<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‘).prepend(function(index,oldHtml){
           return index + ‘ : ‘ +oldHtml+‘,‘; 
        });
    });
</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 文档处理 prepend(content|fn) ] 此方法用于向每个匹配的元素内部前置内容,这是向所有匹配元素内部的开始处插入内容的最佳方式的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 文档操作之prepend() 和prependTo()方法.

jQuery文档处理

jQuery文档处理

jQuery文档操作--append()prepend()after()和before()

Jquery二

jQuery--文档处理