jQuery學習第八課(jquery中的ajax)

來源:互聯網
上載者:User

jquery中的ajax

1. jqueryDOM.load()

2. $.get()

3. $.post()

4. $.ajax()


--------------------------------test.html-------------------------

<body>
 <ul id="test1">
  <li>11111</li>
  <li>22222</li>
  <li>33333</li>
 </ul>
 <ul id="test2">
  <li>aaaaa</li>
  <li>cccccc</li>
  <li>ddddd</li>
 </ul>
</body>

-----------------------------demo1--------------------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
 <title>demo1</title>
 <style>
  .load{width: 500px;height: 300px;border: 1px solid #abcdef;}
 </style>
 <script src="jquery.js"></script>
</head>
<body>
 <input type="button" value="載入" />
 <div class="load"></div>
 <script>
  $('input[type=button]').click(function(){
   $('.load').load('test.html?date='+Math.random()+' #test2');
  });
 </script>

 /*<script>
  $('input[type=button]').click(function(){
   $.get('test.txt?data='+Math.random(),function(data){
    $('.load').html(data);
   });
  });
 </script>*/
</body>
</html>

--------------------------------------------------------------------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
 <title>demo</title>
 <script src="jquery.js"></script>
 <style>
  div{color:red;}
 </style>
</head>
<body>
 <input type="text" name="username" id="username" />
 <input type="button" value="檢驗" />
 <div></div>
 <script>
  $('input[type=button]').click(function(){
   //發送的參數 格式 必須 是json格式
   var send = {'username':$('#username').val()}
   $('div').load('process.php',send,function(data){
    alert(data);
   });
  });
 </script>

/*<script>
  $('input[type=button]').click(function(){
   var url = 'process.php';
   var sendData = {'username':$('#username').val()};
   
   $.get(url,sendData,function(data){
    if(data=='true'){
     $('div').html('使用者名稱可以使用');
    }else{
     $('div').html('使用者名稱不可以是admin');
    }
   });
  })
 </script>*/

/*<script>
  $('input[type=button]').click(function(){
   var url = 'process.php';
   var sendData = {'username':$('#username').val()};
   $.ajax({
    url:url,
    type:'post',
    data:sendData,
    success:function(data){
     if(data=='true'){
      $('div').html('使用者名稱可以使用');
     }else{
      $('div').html('使用者名稱不可以是admin');
     }
    }
   });
  })
 </script>*/
</body>
</html>


--------------------------process.php------------------------------

<?php
header('Content-type: text/html;chartset=utf-8');

$username = $_POST['username'];
// $username = $_GET['username'];
if($username=='admin'){
 echo 'false';
}else{
 echo "true";
}



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.