我有这个 html 按钮:
<button data-toggle="popover" data-placement="bottom" title="" data-content="Dart. <a href='https://www.dartlang.org/'>Link</a>" data-original-title="Popover">Dart</button>
并从 Dart 将按钮连接为 popover 元素:
$('[data-toggle]').forEach((Element elem) {
new Popover(elem, html:true);
});
我没有使用 Popover.wire(elem); 因为我需要添加 html 属性并且通过 setInnerHtml 添加属性不会激活 html 属性。
问题是每当我单击按钮时,Dart 都会从我的锚元素中删除 href 属性。我需要知道如何解决这个问题。谢谢你。