Chinaunix首页 | 论坛 | 博客
  • 博客访问: 276057
  • 博文数量: 103
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 705
  • 用 户 组: 普通用户
  • 注册时间: 2013-05-02 16:15
文章分类

全部博文(103)

文章存档

2014年(8)

2013年(95)

我的朋友

分类: JavaScript

2013-12-29 10:10:05

//ajax
/*
$(function(){
$('input').click(function(){
    $("#box").load('test.html');//当点击按钮时,将test.html的内容加载到id为box的div中
});

});

$(function(){
    $('input').click(function(){
        $("#box").load('test.html .url');//从加载的内容中筛选数据
})

$(function(){
    $("input").click(function(){
        $('#box').load('test.php?url=hans');
    });
});

//POST方式提交数据
$(function(){
    $("input").click(function(){
        $('#box').load('test.php',{
            url:'hans',
        });
    });
});
*/
/*
//回调函数
$(function(){
    $("input").click(function(){
        $('#box').load('test.php',{
            url:'hans',
        },function(response,status,xhr){
            //alert(response);
            //$('#box').html(response+'123');
            //if(status=='success'){alert('success');};//状态:success/error
            //alert(xhr);
            //alert(xhr.responseText);
        });
    });
});
*/
阅读(1008) | 评论(0) | 转发(0) |
0

上一篇:jQuery05-动画

下一篇:tab

给主人留下些什么吧!~~