jQuery, Select Body but exclude Textarea and Input:Text, how?
问题 I tried this $('body').children().not('textarea input:text') But not working. Anyone has an idea? I want this because when I use jQuery.translator, I do not want the textarea and input:text get transalted, so I like to exclude them. If you know a better way to do this, let me know. Thanks. EDIT I think I asked a wrong question, please check here for new question Do NOT translate textarea by jQuery.translator, how? I am going to close this one now. thanks 回答1: $('body *:not(textarea, input