有关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>
时间: 2024-10-26 16:15:42