发布于 2024-10-04 06:04:48 字数 604 浏览 4 评论 0原文

给定下面的 HTML,我需要一个 jQuery 选择器来选择带有 with-stamp 类的

<select name="preset_select">
    <option selected="selected" value="original">ORIGINAL</option>
    <option value="large">LARGE</option>
    <option class="with-stamp" value="medium">MEDIUM</option>
</select>

$("select[name=preset_select]").change(function() {
    // console.log( $(this).hasClass("with-stamp") ); // all false
    // console.log( $("select[name=preset_select] option").hasClass("with-stamp") ); // all true
});

Given the HTML below, I need a jQuery selector that selects the <option> with the with-stamp class.

<select name="preset_select">
    <option selected="selected" value="original">ORIGINAL</option>
    <option value="large">LARGE</option>
    <option class="with-stamp" value="medium">MEDIUM</option>
</select>

$("select[name=preset_select]").change(function() {
    // console.log( $(this).hasClass("with-stamp") ); // all false
    // console.log( $("select[name=preset_select] option").hasClass("with-stamp") ); // all true
});

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

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

发布评论

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

评论(3

帅哥哥的热头脑 2024-10-11 06:04:48
$("select[name='preset_select']").change(function() {
    $(this).children(':selected').hasClass('with-timestamp')
}
$("select[name='preset_select']").change(function() {
    $(this).children(':selected').hasClass('with-timestamp')
}
戒ㄋ 2024-10-11 06:04:48

您只需检查 :selected < option> (因为 .hasClass() 返回 true 如果集合中的任何元素都具有该类),如下所示:

$("select[name=preset_select] option:selected").hasClass("with-stamp")

You need to check only the :selected <option> (since .hasClass() returns true if any of the elements in the set have the class), like this:

$("select[name=preset_select] option:selected").hasClass("with-stamp")
懒的傷心 2024-10-11 06:04:48
$("select[name=preset_select] option:selected").hasClass('with-stamp').change(function() { 

}); 
$("select[name=preset_select] option:selected").hasClass('with-stamp').change(function() { 

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