为什么 href inside 按钮不起作用?
Why href inside button not working?
<button class="button button-outline button-positive">
<a href="www.google.com">fes</a>
</button>
如果我使用 ng-click
,它工作正常,但我需要 href
。
放下按钮并使用 class 名称装饰 a
元素。
<a href="www.google.com" class="button button-outline button-positive">fes</a>
希望这对您有所帮助。
在 html 页面中:
<button menuClose ion-item (click)="openExternalPage(urlCgu)"><ion-icon name="ios-paper-outline" color="primary" item-start ></ion-icon> Conditions d'utilisation</button>
在ts页面:
urlCgu:string;
this.urlCgu = 'http://xxxxxxx.com';
openExternalPage(page){
window.open(page);
}
<button class="button button-outline button-positive">
<a href="www.google.com">fes</a>
</button>
如果我使用 ng-click
,它工作正常,但我需要 href
。
放下按钮并使用 class 名称装饰 a
元素。
<a href="www.google.com" class="button button-outline button-positive">fes</a>
希望这对您有所帮助。
在 html 页面中:
<button menuClose ion-item (click)="openExternalPage(urlCgu)"><ion-icon name="ios-paper-outline" color="primary" item-start ></ion-icon> Conditions d'utilisation</button>
在ts页面:
urlCgu:string;
this.urlCgu = 'http://xxxxxxx.com';
openExternalPage(page){
window.open(page);
}