我对带有确认模式的单选按钮有疑问。 在一个页面中,我有3个广播btn
无线电html
<label *ngFor="let deliveryMode of listDeliveriesChoice" [class.active]="deliveryMode.active">
<input type="radio" name="type" [checked]="deliveryMode.key === this.currentMode" value="{{ deliveryMode.key }}" (click)="changeDelivery(deliveryMode, $event)">
{{ deliveryMode.key }}
</label>
ts中的方法
public changeDelivery(mode, elem): void {
this.router.navigateByUrl("/list/summary/popup/confirmation");
}
当用户点击广播时,我想这样做:
-使用两个按钮打开自定义模式(确认,取消)
-如果用户按下确认按钮,则我检查了收音机并调用了api
-如果用户按下“取消”按钮,则我没有检查收音机并关闭了模态
你能告诉我我该怎么做吗?
当用户按下收音机时,我会打开一个模式弹出窗口,但是收音机会自动切换:(
我需要类似此示例的内容,但具有自定义模式 http://jsfiddle.net/cTzVg/