Maison >interface Web >tutoriel HTML >float的属性_html/css_WEB-ITnose
那是你找到的是所有的,可能并没有指向它或它的结点、你的方法并没有错
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>MyHtml.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head></head><body> <div class="all" id="scroll"> <DIV class="content"> <div class="left">1</div> <div class="mid">2</div> <div class="right">3</div> </DIV> </div><script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> <script> $(function() { //console.log('-------------------------------'); $('.all').append($('.content:eq(0)').clone(true)); $(".all>.content:eq(1)").children('.left').removeClass("left"); $(".all>.content:eq(1)").children('.right').removeClass("right"); $(".all>.content:eq(1)").children('.mid').removeClass("mid"); $(".right").html("x");// 此时第二个div的class 删除,没有影响下面的数据。1、2、3并没有变 $(".left").html("y"); $(".mid").html("z"); }); </script> </body> </html>