html IF_04_09_Checkbox_Binding_2_HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html IF_04_09_Checkbox_Binding_2_HTML相关的知识,希望对你有一定的参考价值。

<ion-content padding>

  <!-- Checkboxes in a List -->
  <ion-list>
    <ion-item *ngFor="let option of options">
      <ion-label>{{option.title}}</ion-label>
      <ion-checkbox slot="end" [(ngModel)]="option.value"></ion-checkbox>
    </ion-item>
  </ion-list>

  <ion-button expand="block" fill="solid" (click)="showConsoleLogs()">Show Console Logs</ion-button>

</ion-content>

以上是关于html IF_04_09_Checkbox_Binding_2_HTML的主要内容,如果未能解决你的问题,请参考以下文章

html IF_04_17_AlertController_HTML

html IF_04_15_ToastController_HTML

html IF_04_13_LoadingController_HTML

html IF_05_04_Office_GoBack_HTML

html IF_04_11_Select_Binding_HTML

html IF_04_03_Radio_Binding_HTML