mirror of
https://github.com/jquery/jquery.git
synced 2026-01-27 02:08:10 -05:00
- Cross Domain getScript
$.getScript("http://foo.com/script.js");
- JSONP
$.ajax({ url: "script.js", type: "jsonp" });
$.getJSON("script.js?callback=?");
- Cross Domain JSONP/getJSON
$.getJSON("http://foo.com/script.js?callback=?");
- No-cache Ajax Requests
$.ajax({ url: "test.html", cache: false });
11 lines
274 B
PHP
11 lines
274 B
PHP
<?php
|
|
error_reporting(0);
|
|
$callback = $_REQUEST['callback'];
|
|
$json = $_REQUEST['json'];
|
|
if($json) {
|
|
echo $callback . '([ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ])';
|
|
} else {
|
|
echo $callback . '({ "data": {"lang": "en", "length": 25} })';
|
|
}
|
|
?>
|