このポップオーバー コードがある場合:
$('.UofTennesseeKnox').popover({
'placement': 'bottom',
'title': '<a class="passName" href="#">University of Tennessee-Knoxville</a>',
'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
'html': 'true'
});
の内容を取得するこのコードは.passName
機能しません。
$('.passName').click(function(){
console.log($(this).html());
});
私は何か間違ったことをしていますか?それとも、ポップオーバーにあるために機能していませんか?ポップオーバーがロードされた後にのみ起動.passName
するために、次のようなことを行うことはできますか?:$('.passName').click(function())
$('.UofTennesseeKnox').popover({
'placement': 'bottom',
'title': '<a class="passName" href="#">University of Tennessee-Knoxville</a>',
'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
'html': 'true'
}, passNamefunction());