angular表单 Dom获取表单值以及双向数据绑定

网友投稿 366 2022-09-20


angular表单 Dom获取表单值以及双向数据绑定

1.app.module.ts中: import { FormsModule } from "@angular/forms"; imports:{ FormsModule ] 案例: HTML

人员登记系统

  • 姓名:
  • 性别:
  • 城市:
  • 爱好:   
  • 备注:



        {{peopleInfo|json}}
    
ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-form', templateUrl: './form.component.html', styleUrls: ['./form.component.scss'] }) export class FormComponent implements OnInit { public peopleInfo: any = { username: "", sex: "1", cityList: ["北京", "上海", "深圳"], city: "北京", hobby: [ { title: "吃饭", checked: false }, { title: "睡觉", checked: false }, { title: "敲代码", checked: true } ], mark:"" } constructor() { } ngOnInit() { } doSubmit() { let usernameDom: any = document.getElementById('username'); console.log(usernameDom.value); } } scss h2{ text-align: center; } .people_list{ // background-color:red; width: 400px; margin: 0 auto; padding: 20px; border: 1px snow blue; li{ height: 50px; line-height: 50px; .form_input{ width: 300px; height: 40px; } } .submit{ width: 100px; height: 30px; float: right; margin-top: 120px; } }


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:使用注解@Validated和BindingResult对入参进行非空校验方式
下一篇:Angular中的路由 路由概述 配置路由 路由重定向 路由选中 默认路由(angularjs路由)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~