Blogger Information
Blog 32
fans 0
comment 0
visits 21442
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4月10日$.ajax 作业
inhylei
Original
629 people have browsed it

代码

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>3.$.ajax()</title>
</head>
<body>
<h2>用户登录</h2>
<form id="form">
<p id="ptext">用户名:<input type="text" name="name"></p>
</form>
</body>
</html>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">

     $(':input').blur(function(){
      $.ajax({
      url: 'data.php',
      data: $('#form').serialize(),
      success: function(msg){
      $('span').empty()
      $('#ptext').append(msg)

      }

      })
        
     })
</script>

QQ图片20180408203612.jpg

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post