简体   繁体   中英

How can I control multiple input-text in form in JQuery

How can I control multiple input-text in form (in my case are 6 inputs). I've to get just one input to show hide button with JQuery and JS.

$("#multiLogin-search input.text-input")

thnx

You can comma seperate the selectors:

$("#multiLogin-search input.text-input, #second-input, #third-input")

Update:

If all your inputs have the same class, just use the following to select them all.

$(".text-input")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM