私はjQueryのオートコンプリートを比較的簡単な方法で使用しています。
$(document).ready(function() {
var data = [ {text: "Choice 1"},
{text: "Choice 2"},
{text: "Choice 3"} ]
$("#example").autocomplete(data, {
matchContains: true,
minChars: 0,
formatItem: function(item)
{ return item.text; }
}
);
});
オートコンプリートで利用可能なすべての選択肢を表示するonclickイベント(ボタンやリンクなど)を追加するにはどうすればよいですか?基本的に、オートコンプリート要素と選択/ドロップダウン要素のハイブリッドを作成しようとしています。
ありがとう!
ドキュメントでそれを行う明白な方法はわかりませんが、オートコンプリートが有効なテキストボックスでフォーカス(またはクリック)イベントをトリガーしようとしています:
$('#myButton').click(function() {
$('#autocomplete').trigger("focus"); //or "click", at least one should work
});
このイベントをトリガーして、すべてのオプションを表示できます。
$("#example").autocomplete( "search", "" );
または、以下のリンクの例をご覧ください。まさにあなたがやりたいことのように見えます。
http://jqueryui.com/demos/autocomplete/#combobox
[〜#〜] edit [〜#〜](@cnanneyから)
注:空の検索文字列がすべての要素を返すようにするには、オートコンプリートでminLength:0を設定する必要があります。
これが一番うまくいくことがわかった
var data = [
{ label: "Choice 1", value: "choice_1" },
{ label: "Choice 2", value: "choice_2" },
{ label: "Choice 3", value: "choice_3" }
];
$("#example")
.autocomplete({
source: data,
minLength: 0
})
.focus(function() {
$(this).autocomplete('search', $(this).val())
});
ラベルを検索し、値を要素$(#example)に配置します
すべてのアイテムを表示する/コンボボックスの動作をシミュレートするには、最初にminLengthオプションを0(デフォルトは1)に設定したことを確認する必要があります。次に、クリックイベントをバインドして、空の文字列で検索を実行できます。
$('inputSelector').autocomplete({ minLength: 0 });
$('inputSelector').click(function() { $(this).autocomplete("search", ""); });
解決策: フォーカスイベントでjquery uiオートコンプリートリストを表示
複数回動作させるためのソリューション
<script type="text/javascript">
$(function() {
$('#id').autocomplete({
source: ["ActionScript",
/* ... */
],
minLength: 0
}).focus(function(){
//Use the below line instead of triggering keydown
$(this).data("autocomplete").search($(this).val());
});
});
これを試して:
$('#autocomplete').focus(function(){
$(this).val('');
$(this).keydown();
});
minLengthに設定
毎回動作します:)
$j(".auto_complete").focus(function() { $j(this).keydown(); })
mustminLength
をzeroに設定して、これを機能させます!これが実際の例です。
$( "#dropdownlist" ).autocomplete({
source: availableTags,
minLength: 0
}).focus(function() {
$(this).autocomplete('search', $(this).val())
});
});
すべてのオプションが表示されます:"%"
(下記参照)
重要なことは、以下の例のように、前の#example宣言の下に配置する必要があることです。これを理解するのに時間がかかりました。
$( "#example" ).autocomplete({
source: "countries.php",
minLength: 1,
selectFirst: true
});
$("#example").autocomplete( "search", "%" );
これは私のために働く唯一のものです。リストは毎回表示され、選択すると閉じます:
$("#example")
.autocomplete(...)
.focus(function()
{
var self = this;
window.setTimeout(function()
{
if (self.value.length == 0)
$(self).autocomplete('search', '');
});
})
これを使用できます:
$("#example").autocomplete( "search", $("#input").val() );
<input type="text" name="q" id="q" placeholder="Selecciona..."/>
<script type="text/javascript">
//Mostrar el autocompletado con el evento focus
//Duda o comentario: http://WilzonMB.com
$(function () {
var availableTags = [
"MongoDB",
"ExpressJS",
"Angular",
"NodeJS",
"JavaScript",
"jQuery",
"jQuery UI",
"PHP",
"Zend Framework",
"JSON",
"MySQL",
"PostgreSQL",
"SQL Server",
"Oracle",
"Informix",
"Java",
"Visual basic",
"Yii",
"Technology",
"WilzonMB.com"
];
$("#q").autocomplete({
source: availableTags,
minLength: 0
}).focus(function(){
$(this).autocomplete('search', $(this).val())
});
});
</script>
これが誰かを助けることを願っています:
$('#id')
.autocomplete({
source: hints_array,
minLength: 0, //how many chars to start search for
position: { my: "left bottom", at: "left top", collision: "flip" } // so that it automatically flips the autocomplete above the input if at the bottom
})
.focus(function() {
$(this).autocomplete('search', $(this).val()) //auto trigger the search with whatever's in the box
})
属性minChars:0を使用してこれを解決した後、2回のクリックをトリガーします。 (入力を1回クリックするとオートコンプリートが表示されます)コード
<input type='text' onfocus='setAutocomplete(this)'>
function setAutocomplete(el){
$(el).unbind().autocomplete("./index.php", {autoFill:false, minChars:0, matchContains:true, max:20});
$(el).trigger("click");$(el).trigger("click");
}
$("#searchPkgKeyWord").autocomplete("searchURL",
{
width: 298,
max: 1000,
selectFirst: false
}).result(function (event, row, formatted) {
callback(row[1]);
}).focus(function(){
$(this).click(); //once the input focus, all the research will show
});
完全なように見えるすべての答えを見てきました。
カーソルがテキストフィールドにあるときにリストを取得する場合は、OR一致するラベルをクリックしたときに、次のようにします。
//YourDataArray = ["foo","bar"];
$( "#YourID" ).autocomplete({
source: YourDataArray
}).click(function() { $(this).autocomplete("search", " "); });
これは、Firefox、IEで正常に動作します。Chrome ...
より良いオプションは$( "#idname")。autocomplete( "search"、 "");テキストボックスのonclickパラメータに。 selectではjqueryによってフォーカスが置かれるため、これは回避策になります。それが許容できる解決策であるかどうかわからない。
私はこの方法を使用しました:
$("#autocomplete").autocomplete({
source: YourDataArray,
minLength: 0,
delay: 0
});
それから
OnClientClick="Suggest(this); return false;"/>
function Suggest(control) {
var acControl = $("#" + control.id).siblings(".ui-autocomplete-input");
var val = acControl.val();
acControl.focus();
acControl.autocomplete("search");
$("#example").autocomplete( "search", "" );
部分を機能させることができませんでした。機能するソースに存在する文字で検索を変更した場合に限ります。だから私はその後使用しました$("#example").autocomplete( "search", "a" );
。
パラメータなしで検索機能を使用することもできます。
jQuery("#id").autocomplete("search", "");
私は最近これを行う必要があり、いくつかの異なる順列(onfocus、textboxのonclickなどを使用)を試した後、最終的にこれに落ち着きました...
<input id="autocomplete" name="autocomplete" type="text"
value="Choose Document">
<p>
<button type="submit" value="Submit" name="submit" id="submit" >
Submit
</button>
</p>
<script type="text/javascript">
$("#autocomplete").autocomplete(
{
source: '@Url.Content("~/Document/DocumentTypeAutoComplete/")' //<--ddl source
, minLength: 0 // <-- This is necessary to get the search going on blank input
, delay: 0
, select: function (event, ui)
{
if (ui.item) {
$("#autocomplete").val(ui.item.value);//<-- Place selection in the textbox
$("docForm").submit();
loadDocTypeCreatePartial(ui.item);
$("#submit").focus(); //This stops the drop down list from reopening
// after an item in the select box is chosen
// You can place the focus anywhere you'd like,
// I just chose my *submit* button
}
}
}).focus(function () {
// following line will autoselect textbox text
// making it easier for the user to overwrite whats in the
// textbox
$(this).select();
//The below line triggers the search function on an empty string
$(this).data("autocomplete").search('');
});
</script>
これにより、フォーカスでオートコンプリートddlリストが開きます(上記のように入力ボックスにデフォルトのテキストがある場合でも)。
また、ユーザーがテキストを消去する必要がないように、テキストボックス内のテキストを自動選択します。
オートコンプリートリストからアイテムを選択すると、そのアイテムがオートコンプリート入力ボックスに配置され、フォーカスが別のコントロールに移動します(したがって、オートコンプリートが再び開くのを防ぎます)。