📌  相关文章
📜  如何从 Angular 中的表单标签之间获取选定的值 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:18.849000             🧑  作者: Mango

代码示例1
//component.html


//component.ts
this.types = [ 'type1', 'type2', 'type3' ];
   this.order = {
      type: 'type1'          
  };  

  callType(value){
    console.log(value);
    this.order.type=value;
  }