form 中的 table元素过滤定位事件

Posted Christal_11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form 中的 table元素过滤定位事件相关的知识,希望对你有一定的参考价值。

<form>
    <table>
          <thead>
              <tr>
	             <th>a</th>
	             <th>b</th>
	             <th>c</th>
	             <th>d</th>
	             <th>e</th>
               </tr>
          </thead>
          <tbody>
               <tr class=‘row‘>
                    <td><input type=‘text‘ name=‘1‘ id=‘1‘ ></td>
                    <td><select name=‘o1‘ id=‘o1‘><option></option></select></td>
	            <td><input type=‘text‘ name=‘2‘ id=‘2‘ ></td>
	            <td><input type=‘text‘ name=‘3‘ id=‘3‘ ></td>
                    <td><select name=‘o12‘ id=‘o12‘><option></option></select></td>
               </tr>
          </tbody>
    </table>
</form>        

 

 利用filter过滤选择器对元素集合进行遍历,index表示索引号,obj表示对象,obj.value表示的是获取的值。通过判断获取的值是否为空来给对象的样式进行修改:

$(‘.row‘).find(‘input‘,‘select‘).filter(‘[name$=opc_width],[name$=opc_space],[name$=bias]‘).each(function(index,obj){
         if(obj.value == ‘‘ || obj.value == null || obj.value == "undefined"){
                  $(obj).css(‘border-color‘,‘red‘);
         }else{
                  $(obj).css(‘border-color‘,‘‘);
        }
});

以上是关于form 中的 table元素过滤定位事件的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

jquery 一个table中,定位到指定的行

在 Firefox 中的 table-cell 元素上定位上下文

Bootstrap 3 form-control-feedback 元素上的单击事件不起作用

selenium中form和frame的区别

如何检测 LWUIT 表单中的按键事件?