Jquery Exclude a Selector?

后端 未结 5 1296
-上瘾入骨i
-上瘾入骨i 2021-02-14 22:00

I\'ve got a form that I clear on focus. I\'ve selected the whole form and it works great except that the submit button goes blank when I click it.

how can I exclude my i

5条回答
  •  青春惊慌失措
    2021-02-14 22:43

    Use the not selector to exclude what you want:

    $(".wpcf7-form input:not('#submit_id'), .wpcf7-form textarea").focus(function() {
     // your code......
    }
    

    Or

    $(".wpcf7-form input:not(input[type=submit]), .wpcf7-form textarea").focus(function() {
     // your code......
    }
    

提交回复
热议问题