码迷,mamicode.com
首页 > Web开发 > 详细

jquery ajax 的 $.get()用法详解

时间:2014-08-12 12:55:54      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   文件   for   ar   cti   

js文件

$(document).ready(function(){
    $("form").submit(function(event) {event.preventDefault()})//取消submit的默认行为
    $("form input[type=‘submit‘]").click(function(){
        var url = $(‘form‘).attr(‘action‘); // 取Form中要提交的链接
        var param = {}; // 组装发送参数
        param[‘name‘]  = $(‘form input[name=name]‘).val();
        param[‘age‘] = $(‘form input[name=age]‘).val();
      $.get(url, param, function(dom) { $(‘div.get‘).append(dom) }) ;  // 发送并显示返回内容
    });
})

html文件

<form action="ajax.php" method="get">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
<div class="get">这是ajax的get方法</div>

php文件

error_reporting(0);
 
  if($_GET["name"]=="kitty")
{
     
    $name= "you are the lucky";
}
else
$name=$_GET["name"];
$age=$_GET["age"];
echo "<div>   ".$name."   ".$age."</div>";

 

jquery ajax 的 $.get()用法详解,布布扣,bubuko.com

jquery ajax 的 $.get()用法详解

标签:style   blog   color   io   文件   for   ar   cti   

原文地址:http://www.cnblogs.com/leejersey/p/3906730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!