如何在新的jQueryUI的的工具提示部件可以被修改,以打开对文档某些元素的click事件的提示,而其他仍然呈现他们对鼠标悬停事件tootip。 在点击打开情况下,提示应通过点击其他地方的文件被关闭。
这是可能的呢?
如何在新的jQueryUI的的工具提示部件可以被修改,以打开对文档某些元素的click事件的提示,而其他仍然呈现他们对鼠标悬停事件tootip。 在点击打开情况下,提示应通过点击其他地方的文件被关闭。
这是可能的呢?
的jsfiddle http://jsfiddle.net/bh4ctmuj/225/
这可能会有帮助。
<!-- HTML -->
<a href="#" title="Link Detail in Tooltip">Click me to see Tooltip</a>
<!-- Jquery code-->
$('a').tooltip({
disabled: true,
close: function( event, ui ) { $(this).tooltip('disable'); }
});
$('a').on('click', function () {
$(this).tooltip('enable').tooltip('open');
});
以前的答案不使用jQueryUI的和相当复杂。
这工作:
HTML:
<div id="tt" >Test</div>
JS:
$('#tt').on({
"click": function() {
$(this).tooltip({ items: "#tt", content: "Displaying on click"});
$(this).tooltip("open");
},
"mouseout": function() {
$(this).tooltip("disable");
}
});
您可以使用检查http://jsfiddle.net/adamovic/A44EB/
此代码创建直到您单击工具提示之外的保持开放的工具提示。 您关闭该提示即使它的工作原理。 它的阐述姆拉登Adamovic的答案 。
小提琴: http://jsfiddle.net/c6wa4un8/57/
码:
var id = "#tt";
var $elem = $(id);
$elem.on("mouseenter", function (e) {
e.stopImmediatePropagation();
});
$elem.tooltip({ items: id, content: "Displaying on click"});
$elem.on("click", function (e) {
$elem.tooltip("open");
});
$elem.on("mouseleave", function (e) {
e.stopImmediatePropagation();
});
$(document).mouseup(function (e) {
var container = $(".ui-tooltip");
if (! container.is(e.target) &&
container.has(e.target).length === 0)
{
$elem.tooltip("close");
}
});
这个答案是根据不同类别的工作。 当点击事件发生带班“触发”的元素的类被改为“触发”和MouseEnter事件是为了把它传递给jQuery UI的触发。
该鼠标移开在这个例子中取消基于点击事件,使一切。
HTML
<p>
<input id="input_box1" />
<button id="trigger1" class="trigger" data-tooltip-id="1" title="bla bla 1">
?</button>
</p>
<p>
<input id="input_box2" />
<button id="trigger2" class="trigger" data-tooltip-id="2" title="bla bla 2">
?</button>
</p>
jQuery的
$(document).ready(function(){
$(function () {
//show
$(document).on('click', '.trigger', function () {
$(this).addClass("on");
$(this).tooltip({
items: '.trigger.on',
position: {
my: "left+15 center",
at: "right center",
collision: "flip"
}
});
$(this).trigger('mouseenter');
});
//hide
$(document).on('click', '.trigger.on', function () {
$(this).tooltip('close');
$(this).removeClass("on")
});
//prevent mouseout and other related events from firing their handlers
$(".trigger").on('mouseout', function (e) {
e.stopImmediatePropagation();
});
})
})
http://jsfiddle.net/AK7pv/111/
我有这个问题今天被打,我想我会分享我的结果...
使用从jQueryUI的提示,自定义样式和自定义内容的例子
我想有这两者的混合体。 我希望能够有酥料饼的,而不是一个工具提示,并成为自定义HTML所需要的内容。 因此,没有悬停状态,而是点击状态。
我的JS是这样的:
$(function() {
$( document ).tooltip({
items: "input",
content: function() {
return $('.myPopover').html();
},
position: {
my: "center bottom-20",
at: "center top",
using: function( position, feedback ) {
$( this ).css( position );
$( "<div>" )
.addClass( "arrow" )
.addClass( feedback.vertical )
.addClass( feedback.horizontal )
.appendTo( this );
}
}
});
$('.fireTip').click(function () {
if(!$(this).hasClass('open')) {
$('#age').trigger('mouseover');
$(this).addClass('open');
} else {
$('#age').trigger('mouseout');
$(this).removeClass('open');
}
})
});
第一部分是更多或更少的从UI的网站上的代码示例的直接复制在添加项目和内容在工具提示块。
我的HTML:
<p>
<input class='hidden' id="age" />
<a href=# class="fireTip">Click me ya bastard</a>
</p>
<div class="myPopover hidden">
<h3>Hi Sten this is the div</h3>
</div>
睡床简单,我们欺骗悬停状态,当我们点击锚标记(fireTip类),持有该提示输入标签具有调用,从而发射工具提示,并保持它,只要我们愿意...的CSS是在鼠标悬停状态小提琴...
不管怎么说,这里是一个小提琴看到互动好一点: http://jsfiddle.net/AK7pv/
更新姆拉登Adamovic答案有一个缺点。 它的工作只有一次。 然后提示被禁用。 为了让每一次的代码应该能够在点击工具提示来补充工作。
$('#tt').on({
"click": function() {
$(this).tooltip({ items: "#tt", content: "Displaying on click"});
$(this).tooltip("enable"); // this line added
$(this).tooltip("open");
},
"mouseout": function() {
$(this).tooltip("disable");
}
});
这个版本保证了工具提示仍然显示足够长的用户通过移动工具提示鼠标和保持可见,直到鼠标移出。 得心应手允许用户选择提示一些文本。
$(document).on("click", ".tooltip", function() {
$(this).tooltip(
{
items: ".tooltip",
content: function(){
return $(this).data('description');
},
close: function( event, ui ) {
var me = this;
ui.tooltip.hover(
function () {
$(this).stop(true).fadeTo(400, 1);
},
function () {
$(this).fadeOut("400", function(){
$(this).remove();
});
}
);
ui.tooltip.on("remove", function(){
$(me).tooltip("destroy");
});
},
}
);
$(this).tooltip("open");
});
HTML
<a href="#" class="tooltip" data-description="That's what this widget is">Test</a>
示例: http://jsfiddle.net/A44EB/123/