jsはaラベルの効果を実現します.
500 ワード
openLink(circle) {
let url = circle.Content.Link.Url
var a = document.createElement('a');
a.setAttribute('href', url);
a.setAttribute('target', '_blank');
a.setAttribute('id', 'js_a');
//
if (document.getElementById('js_a')) {
document.body.removeChild(document.getElementById('js_a'));
}
document.body.appendChild(a);
a.click();
},