实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jquery学习实力之插入广告</title> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> </head> <body> <div class=demo1> <P>我是第三行</P> <P>我是第四行</P> <P>我是第五行</P> <P>我是第六行</P> <P>我是第七行</P> <P>我是第八行</P> <P>我是第九行</P> </div> <div class=demo> <P>我是第一行</P> <P>我是第二行</P> <P>我是第三行</P> <P>我是第四行</P> <P>我是第五行</P> <P>我是第六行</P> <P>我是第七行</P> <P>我是第八行</P> <P>我是第九行</P> </div> <script type="text/javascript"> $(document).ready(function () { $('.demo p:nth-child(8)').html('是我!1111111111111111111111111111111111111111111111') }); $('.demo p:nth-child(2)').css('color','red'); $('.demo1 p:nth-child(2)').html('DWDWQ'); </script> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例