JQuery 查找哪个是可见的

发布于 2024-10-31 05:05:45 字数 747 浏览 0 评论 0原文

<select id="milesAway">
    <option id="5" value="5">5 miles</option>
    <option id="10" value="10">10 miles</option>
    <option id="25" value="25">25 miles</option>
    <option id="50 value="50">50 miles</option>
    <option id="100" value="100">100 miles</option>
    <option id="250" value="250">250 miles</option>
    <option id="500" value="500">500 miles</option>
</select>
<input type="text" id="zipCode" />
<input type="text" id="cityState" class="cityState" />

因此,在任何时间点,只会显示这 3 个可用输入中的一个。它们都是由 .show().hide() 控制的

我确实使用 JQuery 来找出显示的是哪一个并获取它的 id。

谢谢!

<select id="milesAway">
    <option id="5" value="5">5 miles</option>
    <option id="10" value="10">10 miles</option>
    <option id="25" value="25">25 miles</option>
    <option id="50 value="50">50 miles</option>
    <option id="100" value="100">100 miles</option>
    <option id="250" value="250">250 miles</option>
    <option id="500" value="500">500 miles</option>
</select>
<input type="text" id="zipCode" />
<input type="text" id="cityState" class="cityState" />

So at any point in time, only one of these 3 available inputs will be shown. They are all controlled by .show() and .hide()

I do I use JQuery to find out which one is the one that is shown and get it's id.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

那请放手 2024-11-07 05:05:45

你可以做

$(':input:visible') //This will selects all inputs on the page. You can narrow this down by specifying an ID that wraps the input you are looking or.

你也可以通过做来检查输入是否可见

$('#cityState').is(':visible') 

you can do

$(':input:visible') //This will selects all inputs on the page. You can narrow this down by specifying an ID that wraps the input you are looking or.

You can also check if input is visible by doing

$('#cityState').is(':visible') 
久隐师 2024-11-07 05:05:45

http://jsfiddle.net/RSGrW/1/

阅读评论后的第一次更新:

var id = $("#milesAway:visible option:selected, #zipCode:visible, #cityState:visible").attr('id');

因为我看到了你将 ids 放入选项中,我想您希望返回它。这是仅输入或选择 ID 的替代方案。

var id = $("#milesAway:visible, #zipCode:visible, #cityState:visible").attr('id');

http://jsfiddle.net/RSGrW/1/

First update after reading comments:

var id = $("#milesAway:visible option:selected, #zipCode:visible, #cityState:visible").attr('id');

Because I saw you put the ids inside the option, I figured you would like that returned. This is the alternative for just the input or select id.

var id = $("#milesAway:visible, #zipCode:visible, #cityState:visible").attr('id');
狼亦尘 2024-11-07 05:05:45

$('option:visible');

将匹配所有未隐藏的选项元素,隐藏我的意思是显示:无,我不认为可见性:隐藏重要!您必须在“选择器”部分下的 jQuery 文档中仔细检查这一点

$('option:visible');

would match all option elements that are not hidden, by hidden I mean display:none, I don't think visibility:hidden counts! you would have to double check this in the jQuery documentation under the "Selectors" section

本王不退位尔等都是臣 2024-11-07 05:05:45

开始吧:

$('select:not(:visible)');

我建议为每个元素添加一个类以轻松选择它们:

$('.toggleInputs:not(:visible)');

Here ya go:

$('select:not(:visible)');

I'd suggest adding a class to each of the elements to easily select them:

$('.toggleInputs:not(:visible)');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文