Home > Web Front-end > JS Tutorial > body text

jQuery an ajax instance

一个新手
Release: 2017-10-11 09:07:16
Original
1259 people have browsed it

Premise: AppServ has been installed on the computer

The code is as follows:

For the first page, only write HTML code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>第一个ajax</title>
</head>
<body>
<p class="comment">
    <h6>zhangsan:</h6>
    <p class="para">soft</p>
</p>
<p class="comment">
    <h6>李四:</h6>
    <p class="para">板凳</p>
</p>
<p class="comment">
    <h6>王五:</h6>
    <p class="para">地板</p>
</p>

</p>
<script src="../libs/jquery.js"></script>
</body>
</html>
Copy after login

For the second page, write jQuery Code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>test</title>
</head>
<body>
<input type="button" id="send" value="Ajax获取">
<p class="comment">已有评论:</p>
<p id="resText"></p>
<script src="../libs/jquery.js"></script>
<script>
    $(function () {
        $("#send").click(function () {
           /* $("#resText").load("firstajax.html");   //将firstajax页面整个内容加在id为restext中*/
           /* $("#resText").load("firstajax.html .para");     //将firstajax页面中class为para的内容加在restext中*/
        });
    });
</script>
</body>
</html>
Copy after login

The above is the detailed content of jQuery an ajax instance. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!