我有一个像下面这样的HTML代码,
<img src="{% static 'img/orange.png' %}" alt="Active Review" align="right" width="22" height="22" title="tooltip" ng-show="vio.orc_display.create_status == 8"/>
包括数据内容(也不行)
<img src="{% static 'img/orange.png' %}" data-toggle="popover" title="link to siverify" data-content="<a href='{% url 'verification' %}'</a>" alt="Active Review" align="right" width="22" height="22" ng-show="vio.orc_display.create_status == 8"/>
标题字段为我提供纯文本工具提示。有没有办法在html的工具提示中添加一个链接?
例如,当我将鼠标悬停在代码中指定的图像上时,我需要在工具提示中添加链接“https://stackoverflow.com/”。