禁用/启用整个table

时间:2014-12-29 23:00:31   收藏:0   阅读:967




有关JQuery知识:

$("#table_id"):  查找id为table_id的table,相当于:document.getElementById("table_id")

$(":input"): 此为JQuery的一种选择器;匹配所有input  textarea  select  button 元素;

即:以下一些元素都会被匹配:

<input type=text>

 <input type=radio>

<input type=checkbox>

<input type=button>

<input type=file>

<input type=submit>

<input type=reset>

<input type=image>

<input type=passward>

<input type=hidden>

<button></button>

<select><option></option></select>

<textareat></textarea>

原文:http://blog.csdn.net/woaipaiqiu/article/details/42246983

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!