关闭引导程序弹出窗口不起作用

时间:2013-05-27 11:34:20

标签: javascript jquery twitter-bootstrap popover

我有以下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">&times;</button>');
    e.stopPropagation();
});

$('.close_help').click(function(e) {

    $(this).parents('#myelemt').popover('hide');
    e.preventDefault();
});

我想在单击。close_help时关闭弹出窗口,但它不起作用。我尝试了几种方法来获取父.popoverhide,但它不起作用。以上是其中一种方式

这是jsfiddle模拟

1 个答案:

答案 0 :(得分:2)

请查看jsfiddle

我仅对以下行进行了更改

$('.popover-title').append('<button type="button" class="close close_help" onclick="$(&quot;#myelemt&quot;).popover(&quot;hide&quot;);">&times;</button>');

让我知道你的意见。