How to select all textareas and textboxes using jQuery?

后端 未结 5 2061
有刺的猬
有刺的猬 2020-12-02 15:03

How can I select all textboxes and textareas, e.g:


and


         


        
5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-02 16:04

    $("**:**input[type=text], :input[type='textarea']").css({width: '90%'});
    

提交回复
热议问题