首页 > 代码库 > Ajax : $. get()和$.post() $.getScript $.getJSON
Ajax : $. get()和$.post() $.getScript $.getJSON
<body> <input type="button" value="Ajax" /> <div id="box"></div> </body>
test.html
<span class="name">党兴明</span> <span class="age">24</span>
test.php
<?php // if($_POST[‘age‘] == 24){ // echo ‘php:党兴明24‘; // }else{ // echo ‘木有‘; // } if($_GET[‘age‘] == 24){ echo ‘php:党兴明24‘; }else{ echo ‘木有‘; } ?>
test.xml
<?xml version="1.0"?> <root> <url>www.ycku.com</url> </root>
test.josn
[
{
"url" : "www.ycku.com"
}
]
$. get():
//1 三种传值 $(‘input‘).click(function(){ $.get(‘test.php?age=24‘,function(response,status,xhr){ $(‘#box‘).html(response); }); }); //2 $(‘input‘).click(function(){ $.get(‘test.php‘,‘age=24‘,function(response,status,xhr){ $(‘#box‘).html(response); }); }); //3 $(‘input‘).click(function(){ $.get(‘test.php‘,{ age:24 },function(response,status,xhr){ $(‘#box‘).html(response); }); });
$.post()
//1 两种传值 $(‘input‘).click(function(){ $.post(‘test.php‘,‘age=24‘,function(response,status,xhr){ $(‘#box‘).html(response); }); }); //2 $(‘input‘).click(function(){ $.post(‘test.php‘,{ age:24 },function(response,status,xhr){ $(‘#box‘).html(response); }); });
读取.xml和.josn文件:
$(‘input‘).click(function(){ $.post(‘test.xml‘,function(response,status,xhr){ $(‘#box‘).html($(response).find(‘root‘).find(‘url‘).text()); }); }); $(‘input‘).click(function(){ $.post(‘test.json‘,function(response,status,xhr){ $(‘#box‘).html(response[0].url); }); });
$.getScript()
$(‘input‘).click(function(){ $.getScript(‘js/test.js‘); });
$.getJSON()
$(‘input‘).click(function(){ $.getJSON(‘test.json‘,function(response,status,xhr){ $(‘#box‘).html(response[0].url); }); });
Ajax : $. get()和$.post() $.getScript $.getJSON
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。