我想在复选框输入中进行引导,当关注复选框时出现消息。所以这是我做的代码:
HTML
<label class="checkbox inline"><input type="checkbox" class="centang-semua-faktur tooltip-atas" rel="tooltip"> <b>Cetak</b></label>
jquery的
var $checkAllFaktur = $('.centang-semua-faktur');
$checkAllFaktur.on('focus', function() {
if ($(this).is(':checked')){
$checkAllFaktur.attr('title', 'Hapus Centang Semua').tooltip();
}else{
$checkAllFaktur.attr('title', 'Centang Semua').tooltip();
}
});
请帮帮我。谢谢你:))
答案 0 :(得分:2)
您的方案中需要show
和destroy
工具提示,默认情况下,它们只会显示在mouseenter上并隐藏在mouseout上。
您还需要将焦点事件绑定到click事件,以确保在使用鼠标而不仅仅是键盘时获得焦点。
var $checkAllFaktur = $('.centang-semua-faktur');
$checkAllFaktur
.on('click', function() {
$(this).trigger('focus')
})
.on('focus', function() {
if ($(this).is(':checked')){
$checkAllFaktur.attr('title', 'Hapus Centang Semua').tooltip('show');
}else{
$checkAllFaktur.attr('title', 'Centang Semua').tooltip('show');
}
})
.on('blur', function(){
$(this).tooltip('destroy');
});