首页 > 代码库 > 禁用/启用整个table

禁用/启用整个table


<script src="https://code.csdn.net/snippets/566315.js" type="text/javascript"></script>


有关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>

禁用/启用整个table