码迷,mamicode.com
首页 > 其他好文 > 详细

Angular之模版引用变量

时间:2018-04-24 15:36:08      阅读:385      评论:0      收藏:0      [点我收藏+]

标签:rect   rom   select   inner   int   nts   struct   variable   car   

A template reference variable is often a reference to a DOM element within a template. It can also be a reference to an Angular component or directive or a web component.

模板引用变量通常用来引用模板中的某个 DOM 元素,也可以引用 Angular 组件、指令、Web Component(自定义元素标签)。

 

store.component.ts

import { Component, OnInit } from ‘@angular/core‘;

@Component({
  selector: ‘app-store‘,
  templateUrl: ‘./store.component.html‘,
  styleUrls: [‘./store.component.css‘]
})
export class StoreComponent implements OnInit {

  name = ‘SUV‘;

  constructor() { }

  ngOnInit() {
  }

}

store.component.html

<!-- 引用DOM元素 -->

<span #title>4S店</span>
<button (click)="print(title.innerHTML);">单击</button>

<input type="tel" #tel value="021-12345678"/>
<button (click)="print(tel.value);">单击</button>

<!-- 引用Angular组件 -->

<app-car #car></app-car>
<button (click)="print(car.name);">单击</button>

car.component.ts

import { Component, OnInit } from ‘@angular/core‘;

@Component({
  selector: ‘app-car‘,
  templateUrl: ‘./car.component.html‘,
  styleUrls: [‘./car.component.css‘]
})
export class CarComponent implements OnInit {

  name = ‘SUV‘;

  constructor() { }

  ngOnInit() {
  }

}

 

 

Angular之模版引用变量

标签:rect   rom   select   inner   int   nts   struct   variable   car   

原文地址:https://www.cnblogs.com/sea-breeze/p/8930821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!