Ajaxがデータに対して正しく機能しているシナリオ
があります。これは、選択したデータをページ上で正しく選択して表示するjqueryのプラグインをオートコンプリートするために使用できます。送信できるように、ユーザーが選択した値を1つずつ取得して非表示フィールドに入力する必要があるのは、この1つだけです。
頭の中で:
$('#mycustom').magicSuggest({
data: 'http://dev.ejuicysolutions.com/demo/umer/fb2/data.json',
sortOrder: 'name',
minChars: 2,
maxResults: false,
selectionPosition: 'right',
maxDropHeight: 120,
expandOnFocus: false,
noSuggestionText: 'No Team Member found'
});
});
本体->形式:
<form method="post" action="">
<h3>Custom</h3>
<input id="mycustom" style="width:400px;" type="text"/>
<input type="hidden" name="values" value="">
</form>
サンペルはhttp://dev.ejuicysolutions.com/demo/umer/fb2/
で見ることができ、ドキュメントは次の場所で見ることができます:http: //nicolasbize.github.com/magicsuggest/
ドキュメントTABには" getValue() : array[int / string]
"があります。
反応を待っています。