加載我的代碼酥料餅通過AJAX
jQuery('a[rel=popover]').popover({
html: true,
title: '',
content: function() {
.....
.....
}
}).live('click', function(e) {
e.preventDefault();
......
......
});
我有鏈接
<a rel="popover" href="#">link</a>
我的問題是它工作正常上單擊加載鏈接時頁面已加載。但是當鏈接通過ajax加載時,popover不起作用。
什麼是你正在使用jQuery的版本? –
使用事件委託... – lifetimes
我使用jquery 1.8版本。 –