zoukankan      html  css  js  c++  java
  • js 循环控件

      var controls = document.getElementById("tbsell").getElementsByTagName('input');

                                    for (var i = 0; i < controls.length; i++) {
                                        if (controls[i].type == 'text') {
                                            controls[i].value = brr[i];
                                        }
                                    }

      <table class="table_noborder_fontleft" id="tbsell" style=" border:0px;">
                                <tr>
                                    <td>
                                        <input type="text" maxlength="10" id="sellpro1" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro2" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro3" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro4" style=" 68px;" />
                                        &nbsp;
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <input type="text" maxlength="10" id="sellpro5" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro6" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro6" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro7" style=" 68px;" />
                                        &nbsp;
                                    </td>
                                </tr>
                                <tr>
                                    <td>
                                        <input type="text" maxlength="10" id="sellpro8" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro9" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro10" style=" 68px;" />
                                        &nbsp;
                                        <input type="text" maxlength="10" id="sellpro11" style=" 68px;" />
                                        &nbsp;
                                    </td>
                                </tr>
                            </table>

  • 相关阅读:
    C# DataTable的詳細用法 .
    webgl复习笔记——纹理装配
    webgl复习笔记——图形装配过程
    webgl复习笔记——三角形平移、旋转(2)
    webgl复习笔记——[回顾]从零绘制三角形
    webgl复习笔记——三角形平移、旋转(1)
    webgl复习笔记——绘制三角形、四边形
    webgl复习笔记——通过arraybuffer绘制多个点
    webgl复习笔记——可以自由设置颜色的点
    webgl复习笔记——绘制 点、多个点
  • 原文地址:https://www.cnblogs.com/ggbbeyou/p/1588306.html
Copyright © 2011-2022 走看看