not过滤的几种写法
把所有text选中,除了TextBox6
$(":text,:password").not("#TextBox6")
$(":text,:password").not($("#TextBox6")[0])
$(":text:not(#TextBox6),:password")
$(":text:not('#TextBox6'),:password")
把所有text选中,除了TextBox6
$(":text,:password").not("#TextBox6")
$(":text,:password").not($("#TextBox6")[0])
$(":text:not(#TextBox6),:password")
$(":text:not('#TextBox6'),:password")