博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Angular4学习笔记之DOM属性绑定
阅读量:6276 次
发布时间:2019-06-22

本文共 1759 字,大约阅读时间需要 5 分钟。

简介

使用插值表达式将一个表达式的值显示在模版上

{
{productTitle}}

使用方括号将HTML标签的一个属性值绑定到一个表达式上

使用小括号将组件控制器的一个方法绑定到模版上面的一个事件的处理器上

注意

在开始下面的例子之前,请先确认已经新建了一个工程。如果没有,请查看:

事件绑定

clipboard.png

准备工作

了解目的:在模版的界面上面增加一个按钮,然后通过小括号绑定一个事件。新建一个 bind 组件,使用命令:  ng g c bind

修改 bind.component.html

修改 bind.component.ts

//在 BindComponent 类方法中增加方法体onClickButton(event: any){  console.log(event);}

修改 app.component.html

图示:

clipboard.png

Dom属性绑定

例子一

插值表达式 与 属性绑定 之间的关系

两种方式都可以实现,angular 在实现的逻辑上面是: 在程序加载组件的时候,会先将 "插值表达式" 翻译为 "属性绑定"

修改 bind.component.html

修改 bind.component.ts

//增加变量imgUrl: string = "http://placehold.it/320x280";

图示:

clipboard.png

例子二

dom 属性 与 html 属性的区别

HTML元素的 DOM属性和 HTML 属性是有部分区别的,这点需要明确差异。

修改 bind.component.html

修改 bind.component.ts

//增加 event事件onInputEvent(event: any){  //获取的是 dom 属性,即输入属性  console.log(event.target.value);  //获取的是 html 属性,也就是初始化的属性  console.log(event.target.getAttribute("value"));}

图示:

clipboard.png

总结:

1.少量的 HTML属性和 DOM属性之间有这 1 :1 的映射关系,如 :id2.有些有 HTML属性,没有DOM 属性, 如:colspan3.有些有 DOM属性,没有HTML 属性,如:textContent4.就算名字一样,DOM属性和HTML属性获取的内容可能不一样5.模版绑定是通过DOM属性绑定的,而不是通过HTML属性6.HTML属性指定了初始值,DOM属性表示当前值;DOM属性的值可以改变,HTML的值不能改变

例子部分完整代码

bind.component.html

bind works!

bind.component.ts

import { Component, OnInit } from '@angular/core';@Component({  selector: 'app-bind',  templateUrl: './bind.component.html',  styleUrls: ['./bind.component.css']})export class BindComponent implements OnInit {  imgUrl: string = "http://placehold.it/320x280";  constructor() { }  ngOnInit() {  }  onClickButton(event: any){    console.log(event);  }  onInputEvent(event: any){    //获取的是 dom 属性,即输入属性    console.log(event.target.value);    //获取的是 html 属性,也就是初始化的属性    console.log(event.target.getAttribute("value"));  }}

转载地址:http://hogpa.baihongyu.com/

你可能感兴趣的文章
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
C++零基础教程(一)——何谓编程
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
Linux下的lds链接脚本简介(二)
查看>>
入门到进阶React
查看>>
C++每日练笔之日期类(基类)
查看>>
SVN 命令笔记
查看>>