원생 Ajax와 jQuery Ajax의 차이점 예시 분석

선언: 이번에 소개한 것은 aax와 백그라운드를 이용하여 데이터 교환을 하는 작은 예이기 때문에 demo는 서버를 통해 열어야 합니다.서버 환경은 구축하기 매우 좋다. 인터넷에서wamp나xampp를 다운로드하여 한 걸음 한 걸음 설치하면 ok를 하고 쓴 페이지를 서버에서 지정한 위치에 놓는다.열면 브라우저 주소 표시줄에 "localhost/지정 페이지"또는 "127.0.0.1/지정 페이지"를 입력하여 엽니다.
다음은 demo의 HTML, PHP, 원생 ajax, jq ajax 코드를 열거합니다.
HTML 코드:

<!doctype html>
<html>
<head>
    <title>ajax </title>
    <meta charset='utf-8' />
    <link rel="stylesheet" type="text/css" href="css/common.css" />
    <style type="text/css">
        .main{height:400px;width:800px;margin:100px auto 0;border:1px solid #000;}
        .list{height:400px;width:200px;float:left;background:#ddd;}
        .inf{height:400px;width:600px;float:right;background:#ccc;text-align:center;}
        .list li{width:200px;text-align:center;margin:50px 0 0;font-size:24px;cursor: pointer;
        }
        .inf img{width:360px;height:270px;margin:15px auto;}
        .inf p{width:580px;text-align:left;text-indent:2em;font-size:14px;margin:0 10px;}
    </style>
</head>
<body>
    <div class='main'>
        <div class='list' id='list'>
            <ul>
                <li name='spring' id='spring'> </li>
                <li name='summer' id='summer'> </li>
                <li name='fall' id='fall'> </li>
                <li name='winter' id='winter'> </li>
            </ul>
        </div>
        <div class='inf' id='inf'>
        <!-- -->
        </div>
    </div>
</body>
<script type="text/javascript" charset="utf-8" src="js/jQuery.js"></script>
</html>
PHP 코드:

<?php
$details = array (
    'spring'    =>    "<img src='images/spring.jpg' alt='' /><p> , </p>",
    'summer'    =>    "<img src='images/summer.jpg' alt='' /><p> , </p>",
    'fall'    =>    "<img src='images/fall.jpg' alt='' /><p> , </p>",
    'winter'        =>    "<img src='images/winter.jpg' alt='' /><p> , </p>"
);
echo $details[$_REQUEST['LiName']];
?>
원생 ajax:

<script type="text/javascript">
    var lis = document.getElementById('list').getElementsByTagName('li');
    window.onload = initPage;
    function initPage() {
        for (var i=0; i<lis.length; i++) {
            txt = lis[i];
            txt.onclick = function () {
                getDetails(this.id);
            }
        }
    }
    function creatRequest() {
        try {
            request = new XMLHttpRequest();
        }
        catch (tryMS) {
            try {
                request = new ActiveXObject("Msxml2.XMLHTTP");
            }
            catch (otherMS) {
                try {
                    request = new ActiveXObject("Miscrosoft.XMLHTTP");
                }
                catch (failed) {
                    request = null;
                }
            }
        }
        return request;
    }
    function getDetails(itemName) {
        request = creatRequest();
        if (request == null) {
            alert(' ')
            return;
        }
        var url = "getDetails.php?LiName="+escape(itemName);
        request.open("GET",url,true);
        request.onreadystatechange = displayDetails;
        request.send(null);
    }
    function displayDetails() {
        if (request.readyState == 4) {
        if (request.status == 200) {
            detailDiv = document.getElementById("inf");
            detailDiv.innerHTML = request.responseText;
        }
      }
    }  
</script>
  JQ ajax:

<script type="text/javascript">
$('#list li').click ( function () {                      
        $.ajax({                          
            type:'GET',                           
            data:'',                          
            url:"getDetails.php?LiName="+this.id,                          
            success:function(data){                               
                $('#inf').html(data);                               
            },
            dataType:'text',
            error:function (){               
                alert(" !");           
            }
        })                   
    });
</script>

좋은 웹페이지 즐겨찾기