您好我正在创建一个结帐表单,我想添加一个工具提示,以显示在哪里可以找到信用卡的CVV。
因此,如果人们将鼠标悬停在工具提示上,然后在弹出窗口中显示图像,那可能吗?
答案 0 :(得分:1)
事实证明,您可以将HTML添加到title
标记中。您可以添加<img>
标记,如下所示:
<span data-tooltip aria-haspopup="true" class="has-tip" title="<img src='http://placehold.it/350x150'> Tooltips are awesome, you should totally use them!">extended information</span>
这是working demo。