我有以下js代码
$('#myelemt').popover({placement: 'right', title: 'What is this',
content: 'content content content content content content content content content content content ', trigger: 'manual', html: 'true', container: '.wrap'});
$('#myelemt').click(function(e) {
$('#myelemt').popover('show');
$('.popover-title').append('<button type="button" class="close close_help">×</button>');
e.stopPropagation();
});
$('.close_help').click(function(e) {
$(this).parents('#myelemt').popover('hide');
e.preventDefault();
});
我想在单击。close_help
时关闭弹出窗口,但它不起作用。我尝试了几种方法来获取父.popover
到hide
,但它不起作用。以上是其中一种方式
这是jsfiddle模拟
答案 0 :(得分:2)
请查看jsfiddle
我仅对以下行进行了更改
$('.popover-title').append('<button type="button" class="close close_help" onclick="$("#myelemt").popover("hide");">×</button>');
让我知道你的意见。