jQuery 抄袭笔记(23) :选择器中的加号
24 Oct 2011这个和正则表达式 + 的意思一样,得到紧接的节点。示例中将打印 div 元素紧接的p元素的html. 注意了: 不是 加起来,而是 紧接的那个。 不是输出两个,而是一个。
01 <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
02 <html xmlns=“http://www.w3.org/1999/xhtml”>
03 </span>
04 <meta http-equiv=“Content-Type” content=“text/html; charset=gb2312″ />
05</span>Hello Lazynight~~</title>
06 <script type=“text/javascript” src=“jquery-1.1.3.pack.js”></script>
07 <script type=“text/javascript”>
08 $(document).ready(function(){
09 $(“input”).click(function(){
10 //alert($(“div+p”).html());
11 alert($(“div”).next().html());
12 });
13 });
14 </script>
15 </head>
16 </span>
17 <input type=“button” value=“点我测试~~”>
18
02 <html xmlns=“http://www.w3.org/1999/xhtml”>
03 </span>
04 <meta http-equiv=“Content-Type” content=“text/html; charset=gb2312″ />
05
06 <script type=“text/javascript” src=“jquery-1.1.3.pack.js”></script>
07 <script type=“text/javascript”>
08 $(document).ready(function(){
09 $(“input”).click(function(){
10 //alert($(“div+p”).html());
11 alert($(“div”).next().html());
12 });
13 });
14 </script>
15 </head>
16 </span>
17 <input type=“button” value=“点我测试~~”>
18
</span>DAY</div>
19
19
</span>NIGHT</p>
20 </body>
21 </html>
</div>
下载源码
转载请注明:[于哲的博客][1] » [jQuery 抄袭笔记(23) :选择器中的加号][2]
[1]: http://lazynight.me
[2]: http://lazynight.me/659.html