首页 > Web开发 > 详细

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

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

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()用法详解

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!