加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

验证是否在Angular2中选中了输入复选框

发布时间:2020-12-17 17:34:39 所属栏目:安全 来源:网络整理
导读:我的 HTML中有一个表,每行中有一个单元格有一个输入复选框. 现在我正在尝试检查是否选中了复选框,以下是我尝试过的. HTML: table class="table table-hover" id="just_a_table" thead tr th scope="col"Select/th th scope="col"IP Addr/th /tr /thead tbod
我的 HTML中有一个表,每行中有一个单元格有一个输入复选框.

现在我正在尝试检查是否选中了复选框,以下是我尝试过的.

HTML:

<table class="table table-hover" id="just_a_table">
    <thead>
        <tr>
          <th scope="col">Select</th>
          <th scope="col">IP Addr</th>
        </tr>
    </thead>
    <tbody>
        <tr *ngFor="let data of instances">
          <td><input type="checkbox" (click)='onSelect()'></td>
          <td>{{data["IP"]}}</td>
        </tr>
    </tbody>
</table>

TS:

onSelect() {
    // We get the table data from the html and find if the checkbox is active.
    // The rows of the tables can be accessed by "rows" object and cells can be accessed using "cells" object.
    this.table_data = document.getElementById("just_a_table")

        for (var i=1,row; row = this.table_data.rows[i]){
          for (var j=0,cell; cell = row.cells[j]){
            if (<HTMLInputElement>cell[1].checked){
              console.log("It is checked")
            }
        }
    }
}

我正在这样做,因为我不想得到带有它ID的输入元素,看看是否检查过.

任何帮助/方向在这里将非常感激.

解决方法

HTML

<table class="table table-hover" id="just_a_table">
       <thead>
           <tr>
               <th scope="col">Select</th>
               <th scope="col">IP Addr</th>
           </tr>
        </thead>
        <tbody>
           <tr *ngFor="let data of instances">
               <td><input type="checkbox" (change)='onSelect($event)'></td>
               <td>{{data["IP"]}}</td>
           </tr>
        </tbody>
   </table>

您需要检查event.target.checked以解决此问题.这就是你如何实现这一目标:

TS

onSelect(event) {
     if ( event.target.checked ) {
        // Your logic here
    }
}

>你应该使用(改变)而不是(点击)因为它更好实践>停止思考JS.你现在正在使用Typescript和????角.存在这些框架是因为香草JS很糟糕,所以没有必要????当你使用这个真棒时,继续写香草js????库/框架

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读