我有一个带有以下 HTML 和咖啡脚本的 Rails 应用程序:
<span id="CEO_portrait"><%= image_tag "CEO_portrait.png", class: "portrait" %></span>
<div id="tooltip_container">
<div id="CEO_biography">
"The CEO founded the company in 1969."
</div>
</div>
$ ->
$('#CEO_portrait').popover
title: "James E. Lee"
placement: "top"
trigger: "hover"
html: true
container: "#tooltip_container"
content: ->
$('#CEO_biography')
当我的鼠标第一次悬停在“#CEO_portrait”跨度上时,弹出框会出现适当的内容。但是,当我的鼠标离开该跨度时,id 为“CEO_biography”的 div 将被删除。结果,当我将鼠标悬停在'#CEO_portrait' 再次出现,标题显示但内容不显示。我无法弄清楚为什么会发生这种情况。如何让内容持续存在?