jquery-ui/demos/autocomplete/remote-jsonp.html

59 lines
1.7 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
<html lang="en">
2010-01-20 14:00:14 +00:00
<head>
2010-09-10 02:33:09 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2010-09-10 02:33:09 +00:00
<title>jQuery UI Autocomplete - Remote JSONP datasource</title>
<link rel="stylesheet" href="../../themes/base/all.css">
2010-09-10 02:24:52 +00:00
<link rel="stylesheet" href="../demos.css">
<style>
2011-05-27 12:32:48 +00:00
.ui-autocomplete-loading {
background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
2011-05-27 12:32:48 +00:00
}
</style>
<script src="../../external/requirejs/require.js"></script>
<script src="../bootstrap.js">
2010-09-10 02:24:52 +00:00
function log( message ) {
2011-05-27 12:32:48 +00:00
$( "<div>" ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
2010-01-20 14:00:14 +00:00
}
2010-09-10 02:24:52 +00:00
$( "#birds" ).autocomplete({
2010-09-10 02:24:52 +00:00
source: function( request, response ) {
$.ajax( {
url: "search.php",
2010-01-20 14:00:14 +00:00
dataType: "jsonp",
data: {
term: request.term
2010-01-20 14:00:14 +00:00
},
2010-09-10 02:24:52 +00:00
success: function( data ) {
response( data );
2010-01-20 14:00:14 +00:00
}
} );
2010-01-20 14:00:14 +00:00
},
minLength: 2,
2010-09-10 02:24:52 +00:00
select: function( event, ui ) {
log( "Selected: " + ui.item.value + " aka " + ui.item.id );
2010-01-20 14:00:14 +00:00
}
} );
2010-01-20 14:00:14 +00:00
</script>
</head>
<body>
<div class="ui-widget">
<label for="birds">Birds: </label>
<input id="birds">
2010-01-20 14:00:14 +00:00
</div>
<div class="ui-widget" style="margin-top:2em; font-family:Arial">
Result:
<div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
</div>
<div class="demo-description">
<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field.</p>
<p>The datasource is a server-side script which returns JSONP data, specified via a function which uses <code>jQuery.ajax()</code> for the <code>source</code> option.</p>
2012-09-10 15:33:46 +00:00
</div>
2010-01-20 14:00:14 +00:00
</body>
</html>