我有以下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模拟