jQuery中的Ajax---6.5.1: load()方法

 1 <html>
 2 <head>
 3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 4 <title>Insert title here</title>
 5 </head>
 6 <body>
 7 <div class="comment">
 8     <h6>张三</h6>
 9     <p class="para">沙发</p>
10 </div>
11 
12 <div class="comment">
13     <h6>李四</h6>
14     <p class="para">板凳</p>
15 </div>
16 
17 <div class="comment">
18     <h6>王五</h6>
19     <p class="para">地板</p>
20 </div>
21 </body>
22 </html>
 1 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 5 <title>Insert title here</title>
 6 <script type="text/javascript" src="jquery/jquery-1.8.0.js">
 7 </script>
 8 <script type="text/javascript">
 9     $(function(){
10         $("#send").click(function(){
11             $("#resText").load("test.html .para");
12         });
13     });
14 </script>
15 </head>
16 <body>
17 <input type="button" value="ajax获取" id="send">
18 <div class="comment">已有评论:</div>
19 <div id="resText"></div>
20 </body>
21 </html>

 

jQuery中的Ajax---6.5.1: load()方法,古老的榕树,5-wow.com

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