使用jQuery隐藏具有相同类的第二个图像

时间:2014-10-29 14:18:30

标签: javascript jquery html css

我试图在我的页面上隐藏图像,我无法弄清楚如何做到这一点。该图像与在同一页面上显示的图像具有相同的类别。我试过这些方法:

jQuery('img.ui-datepicker-trigger').eq(1).hide();

我甚至试图隐藏它们两者都无济于事:

jQuery('img.ui-datepicker-trigger').hide();

我还尝试添加一个CSS类来隐藏它们,通过jQuery,没有运气。如果我改变插件样式中的CSS并创建类display: none,它就可以工作。但是,我只需要隐藏其中一个。

以下是相关网站:http://new.teenchallenge.cc/donate/?donation_type=Student+Sponsorship 它是"开始日期"旁边的第二个日历图标。字段。

非常感谢任何帮助!

编辑:

我应该像有人提到的那样隐藏整个范围。我无法弄清楚如何隐藏跨度,所以我开始隐藏子元素,这不是一个好主意。我应该坚持我的第一个隐藏跨度的计划。

这是我的代码:

jQuery(document).ready(function(){
    // Prepopulate gravity forms fields
    jQuery('span.ginput_product_price_label').text('Monthly cost per student:');
    jQuery('#field_2_22 > label').text('Total recurring monthly support:');
    jQuery('span.gf1stpay_recurring_date').eq(1).hide(); //<----- THIS IS WHAT WORKS
    //jQuery('#gf1stpay_2_8_5').hide();
    //jQuery('.gf1stpay_end_date_label').hide();
    //jQuery('img.ui-datepicker-trigger').html('This is a test...');    
}

);

0 个答案:

没有答案