这个函数在jQuery中做了什么?

时间:2015-09-17 05:57:03

标签: javascript jquery

实际上我正在尝试在我的html代码上应用这个jQuery代码,但我没有得到所需的输出。

jQuery(document).ready(function() {
    jQuery(".careers_sec input#apply_now").click(function() {
        var Apply_for_button = jQuery(this).attr("rel");
        jQuery('#InterestedIn').val(apply_for_btn);
    });
    jQuery("#view_details").click(function() {
        var id = $(this).attr('rel');
        console.log(id);
        $(this).hide();
        $('#' + id).find('#apply_now').show();
        $('#' + id).find('.upButton').show();
        $('#' + id).find('.job_desc').slideDown(500);
    });
    jQuery(".upButton").click(function() {
        var id = $(this).attr('rel');
        console.log(id);
        $(this).hide();
        $('#' + id).find('#apply_now').hide();
        $('#' + id).find('#view_details').show();
        $('#' + id).find('.job_desc').slideUp(500);
    });
});

0 个答案:

没有答案