我正在尝试打开一个 qtip (v2.0.0) 并让它专注于一个链接——菜单中的第一项。(更一般地说,我试图将这个美妙的 qtip 用作一种上下文菜单,并将焦点放在第一个 li/menu 项上,这样他们就可以方便地按 Enter 而不必单击。)所以......
$("tr.request td").qtip({
content : {
text: $('#qtipMenu').clone(),
title : {button : true, text : ' '}
},
position : {my : 'bottom center' , at : 'top center'},
show : {event : 'click'},
hide : false,
events : {
show : function(){
var selector = "#" + this.id + " ul > li:first > a " ;
// for the sake of experiment...
$(selector).focus(function(){console.warn("focus on this "+this.tagName + " element!") })
// and the callback fires, but...
$(selector)[0].focus(); // doesn't work
$(selector).focus(); // doesn't work either
// nor does this:
$("div.ui-tooltip-content ul > li:first > a").focus();
// ...though I know I'm definitely addressing this element
// and can manipulate it in other ways
},
render : function(event) {
$("div.ui-tooltip-content ul").removeAttr('id').show()
}
}
});
}
FWIW,每个 qtip 的内容都是从隐藏的 UL 元素中克隆出来的,因此:
<ul id="qtipMenu" style="display:none" class="qtip-menu">
<li><a href="admin/requests/view">view details</a></li>
<li><a href="admin/requests/add">add to schedule</a></li>
<li><a href="admin/requests/delete">delete</a></li>
</ul>
是的,它包含在 $(document).ready(function(){}) 中。“焦点”事件处理程序按预期触发,但浏览器 UI 的实际焦点没有发生(希望我清楚地解释自己)。
有任何想法吗?