我想做这样的事情:
$('.UofTennesseeKnox').popover({
'selector': '',
'placement': 'bottom',
'title': '<a href="home.html">University of Tennessee-Knoxville</a>',
'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
});
但是“title”的整个值都出现在页面上,包括标签。有没有一种简单的方法可以做到这一点,或者我是否需要使用不同的弹出框脚本?
最佳答案
$('.UofTennesseeKnox').popover({
'selector': '',
'placement': 'bottom',
'title': '<a href="home.html">University of Tennessee-Knoxville</a>',
'content': 'Facilities Services Department 2233 Volunteer Boulevard, Room 203 Knoxville, TN 37996-3010',
'html': 'true'
});
呃……
关于javascript - 我可以在引导弹出窗口中放置链接吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14697515/