1
我正在使用Twitter Bootstrap彈出式窗口來刪除特定的表格行,並且似乎無法獲得彈出窗口中的按鈕來影響任何內容。我已經在popover外面複製了確切的「取消」按鈕,它工作正常。 http://jsfiddle.net/UK7BE/1/關閉實際彈出窗口內的Bootstrap彈出窗口?
HTML
<span class="glyphicon glyphicon-trash icon-set delLtBlue delPop" title='Delete'
data-content="
<div style='font-size: 14px; color: #000000; font-weight:bold'>
<span class='icon-warning-2'></span> Are you sure you want to delete the selected row?<br/><br/>
</div>
<input type='button' value='Cancel' class='greenBtn cancelPop' /> <input type='button' value='Delete' class='greenBtn' id='delete' />
" title="Delete"></span>
jQuery的
$('.delPop').popover({
placement:'bottom',
html : true,
});
$("input[type=button].cancelPop").on('click',function(){
$(".delPop").popover('hide');
});
任何想法?提前致謝。
太謝謝你了。非常有幫助。 – triplethreat77
@ triplethreat77不客氣。順便說一句,如果整個部分包含在另一個元素中,那麼在事件委託中,您可以綁定到該元素而不是文檔。 – PSL