语法:$("<font color="#7bd144">:type属性的属性值</font>")
$(":input") // 所有 <input> 元素
$(":text") // 所有 type="text" 的 <input> 元素
$(":password") // 所有 type="password" 的 <input> 元素
$(":radio") // 所有 type="radio" 的 <input> 元素
$(":checkbox") // 所有 type="checkbox" 的 <input> 元素
$(":submit") // 所有 type="submit" 的 <input> 元素
$(":reset") // 所有 type="reset" 的 <input> 元素
$(":button") // 所有 type="button" 的 <input> 元素
$(":image") // 所有 type="image" 的 <input> 元素
$(":file") // 所有 type="file" 的 <input> 元素
$(":disabled") // 所有禁用的 input 元素
$(":selected") // 所有被选取的 input 元素
$(":checked") // 所有被选中的 input 元素