Я использую приведенный пример кода here и хотел бы добавить функцию, которая создаст всплывающую подсказку с сообщением, когда пользователь наведет над опцией в combobox , Всплывающая подсказка должна отображаться при наведении курсора для каждой опции.jQuery ComboBox - событие (ввод мыши/зависание) для параметров в списке
На этом этапе я просто хочу, чтобы событие срабатывало, сообщение в нем может быть тем, что я буду определять позже. Кто-то может помочь?
вот мой код:
$(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>
При решении этого важно иметь в виду, что процедура JQuery скрывает первоначальный список. Он создает новый список с структурой ul li.
Из-за этого создание события для списка опций не будет работать для зависания, поскольку пользователь не может взаимодействовать с исходным списком, поскольку jQuery делает это от имени пользователя.
Когда пользователь выбирает параметр, jQuery обновляет исходный список опций.
Таким образом, для того чтобы событие mouseover/hover/mouseenter работало здесь, оно должно быть привязано к списку, созданному jQuery.
Я боюсь, что он не срабатывает. –
@JacquesJoubert он должен срабатывать, когда вы наводите указатель мыши на опцию (и не нажимаете на опцию). – ScanQR
@JacquesJoubert попробует нет с обновленным ответом. – ScanQR