简体   繁体   中英

How to select multiple elements by id using jQuery

I have two radio buttons:

<p>
    <label for="input_1">Path to Excellent </label> 
    <input id="input_1" name="radio" type="radio" value="1" />
</p>
<p>
    <label for="input_2">Award of Excellence</label> 
    <input id="input_2" name="radio" type="radio" value="2" />
</p>

I would like to get val() from one of them using their ids: "input_1" or "input_2" by jQuery, something like this:

$('input[#input_1,#input_2]:checked').val();

My aim is to get val() from one of them that is checked, by id. How can I do this?

在这种情况下,您可以检查id开头

$("input[id^='input_']:checked").val();

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