Ajax学习笔记(2)

技术分享
 1 <head runat="server">
 2     <title></title>
 3     <script src="http://localhost:3369/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
 4     <script type="text/javascript">
 5         $(function () {
 6             $("#send").click(function () {
 7                 //无参数传递,GET方式
 8                 //$("#reText").load("test.htm");
 9 
10                 //筛选部分元素
11                 $("#reText").load("test.htm .comment1");
12             });
13 
14         });
15     
16     </script>
17 </head>
View Code
技术分享
 1 <body>
 2     <div class="comment">
 3         <h2>
 4             张晓红:</h2>
 5         <p class="para">
 6             青菜</p>
 7     </div>
 8 
 9     <div class="comment1">
10         <h2>
11             刘龙龙:</h2>
12         <p class="para">
13             罗卜</p>
14     </div>
15 
16     <div class="comment">
17         <h2>
18             田欣欣:</h2>
19         <p class="para">
20             香菇</p>
21     </div>
22 </body>
View Code

技术分享

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。