我正在使用select2。内置事件不支持所选项目上的悬停事件,因此,我试图在将鼠标悬停在所选项目上时触发悬停事件(多项选择)。

function tagFormat(state) {
    return '<span class="tagElement">' + state.text + '</span>';
}
$('.tagElement').hover(function(event){
    alert('something');
});
var sampleTags = ['red','white'];
$("[taggable]").select2({
    formatSelection: tagFormat,
    maximumInputLength: 10,
    tags:sampleTags,
    tokenSeparators: [",", " "]
});


http://bootply.com/96527处启动,您可以看到在select2外部触发了悬停事件,但是在select2内则没有触发。内部机制是什么?

最佳答案

select2.js具有.show函数,每当您将鼠标悬停在选项上时,该函数都会更新属性“ aria- describeby”。此功能可以扩展...

jsfiddle example

c.prototype.show = function() {
    var b = a.Event("show.bs." + this.type);
    this.$element.trigger(b);
    var d = a.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]);
    if (b.isDefaultPrevented() || !d) return;
    var e = this,
        f = this.tip(),
        g = this.getUID(this.type);
    /*look for the select box and find the 'onmouseover' attribute */
    var s = this.$element.siblings('select');

    if (s != undefined && s.attr('onmouseover') != undefined) {
        var m = s.attr('onmouseover');
        eval(m);
   }
   ...
}

关于jquery - 如何在select2选择上启用悬停事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20187032/

10-15 04:03