コード例はhereです。ユーザーがコンボボックスのオプションにカーソルを置いたときにメッセージ付きのツールチップを作成する関数を追加したいと思います。ツールチップは、すべてのオプションのホバー上に表示する必要があります。jQuery ComboBox - リスト内のオプションのイベント(マウス入力/ホバー)
この段階では、イベントを発生させたいだけです。その中のメッセージは、後で定義するものであれば何でも構いません。誰かが助けてくれますか? jQueryの手順は、元のリストを隠していることに留意しておくことが重要である
$(function() {
$.widget("custom.combobox", {
_create: function() {
this.wrapper = $("<span>")
.addClass("custom-combobox")
.insertAfter(this.element);
this.element.hide();
this._createAutocomplete();
this._createShowAllButton();
this._hoverOption();
},
\t
\t
/*
*
* Hover Event
*
*/
_hoverOption: function() {},
\t
_createAutocomplete: function() {
var selected = this.element.children(":selected"),
value = selected.val() ? selected.text() : "";
this.input = $("<input>")
.appendTo(this.wrapper)
.val(value)
.attr("title", "")
.addClass("custom-combobox-input ui-widget ui-widget-content ui-state-default ui-corner-left")
.autocomplete({
delay: 0,
minLength: 0,
source: $.proxy(this, "_source")
})
.tooltip({
classes: {
"ui-tooltip": "ui-state-highlight"
}
});
this._on(this.input, {
autocompleteselect: function(event, ui) {
ui.item.option.selected = true;
this._trigger("select", event, {
item: ui.item.option
});
},
autocompletechange: "_removeIfInvalid"
});
},
_createShowAllButton: function() {
var input = this.input,
wasOpen = false;
$("<a>")
.attr("tabIndex", -1)
.attr("title", "Show All Items")
.tooltip()
.appendTo(this.wrapper)
.button({
icons: {
primary: "ui-icon-triangle-1-s"
},
text: false
})
.removeClass("ui-corner-all")
.addClass("custom-combobox-toggle ui-corner-right")
.on("mousedown", function() {
wasOpen = input.autocomplete("widget").is(":visible");
})
.on("click", function() {
input.trigger("focus");
// Close if already visible
if (wasOpen) {
return;
}
// Pass empty string as value to search for, displaying all results
input.autocomplete("search", "");
});
},
_source: function(request, response) {
var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
\t \t var result = [];
result = this.element.children("option").map(function() {
var text = $(this).text();
if (this.value && (!request.term || matcher.test(text)))
return {
label: text,
value: text,
option: this
};
});
\t \t if(result.length == 1 && request.term.length > this.options.previousValue.length){
\t \t \t \t result[0].option.selected = true;
\t \t \t \t this._trigger("select", null, {
\t \t \t \t \t item: result[0].option
\t \t \t \t });
\t \t \t \t this.input.val(result[0].label);
\t \t \t \t this.options.previousValue = result[0].label;
\t \t }else{
\t \t \t this.options.previousValue = request.term; \t \t
\t \t }
\t \t response(result);
\t \t
},
_removeIfInvalid: function(event, ui) {
// Selected an item, nothing to do
if (ui.item) {
return;
}
// Search for a match (case-insensitive)
var value = this.input.val(),
valueLowerCase = value.toLowerCase(),
valid = false;
this.element.children("option").each(function() {
if ($(this).text().toLowerCase() === valueLowerCase) {
this.selected = valid = true;
return false;
}
});
// Found a match, nothing to do
if (valid) {
return;
}
},
_destroy: function() {
this.wrapper.remove();
this.element.show();
}
});
$("#combobox").combobox();
});
li.ui-menu-item {
\t padding-left: 15px; \t
}
.custom-combobox {
\t position: relative;
\t display: inline-block;
\t margin-right: 40px;
}
.custom-combobox-toggle {
position: absolute;
top: 0;
bottom: 0;
margin-left: -1px;
padding: 0;
}
.custom-combobox-input {
margin: 0;
padding: 5px 10px;
}
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>
<select id="combobox">
<option value="">Select one...</option>
<option value="good">one</option>
<option value="bad">two</option>
<option value="ugly">three</option>
</select>
これを解決するには:
は、ここに私のコードです。これは、ul li構造を持つ新しいリストを作成します。
このため、オプションリストのイベントを作成すると、ユーザーの代わりにjQueryが行うので、ユーザーは元のリストとやりとりできないため、ホバーには機能しません。
ユーザーがオプションを選択すると、jQueryは元のオプションリストを更新します。
ここでmouseover/hover/mouseenterイベントが機能するためには、jQueryによって作成されたリストにバインドする必要があります。
私はそれが発生しないことは恐れています。 –
@JacquesJoubertオプションの上にマウスを置いたときに起動する必要があります(オプションをクリックしないでください)。 – ScanQR
@JacquesJoubert更新された回答でnoを試してください。 – ScanQR