将类添加到具有来自数组的id的元素

时间:2011-10-27 13:37:32

标签: javascript jquery

我有一个包含cookie值的数组,如果其中一个值与h2的id匹配,我想添加类测试。这是我尝试过的最新路线。感谢

jQuery.each(arr, function(index, value) {
    $("h2.#" + value).addClass("testing");
});

完整代码:

<script type="text/javascript">
$(document).ready(function(){
    var cookieName = $("body").attr("id");
    storedCookieName = $.cookie(cookieName);

    if (storedCookieName != null) {

        var cookieValues = storedCookieName;
        var arr = storedCookieName.split(',');
        alert( "the cookie values for this page are :" + arr);

        jQuery.each(arr, function(index, value) {
            $("#" + value).addClass("testing");
        });


    } else {
        var cookieValues = '';
        alert("I don't have a cookie for this page");
};

  //add id's to each drop down box trigger
$('h2.contentTrigger').attr('id', function(i, value) {
    return "dropDownTrigger" + (i+1);
});

//Hide (Collapse) the toggle containers on load
$(".toggle_content_container").hide(); 

//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
$("h2.contentTrigger").click(function(){
    $(this).toggleClass("active").next().slideToggle("fast");
    return false; //Prevent the browser jump to the link anchor
});


$("h2.contentTrigger").click(function(){

      //get class of clicked item to check if dropdown is active when clicked
    var triggerClass = $(this).attr("class");
      //get id of clicked dropdown
    var targetLink = $(this).attr("id");

    if ((triggerClass == 'contentTrigger noprint active') || (triggerClass == 'contentTrigger print active')) {
        cookieValues+=($(this).attr("id")+",");
        $.cookie(cookieName, cookieValues, { path: '/', expires: 10 });
        //alert("adding value" + cookieValues);    
    }else{
        cookieValues = cookieValues.replace(targetLink+",", "");
        $.cookie(cookieName, cookieValues, { path: '/', expires: 10 });    
        //alert("new value" + cookieValues);    
    };
});

});//end:$(document).ready
</script>

</head>
<body id="<CFOUTPUT>#SMPPageVariables.PageMetaKeywords#</CFOUTPUT>">
<div id="container">
<CFINCLUDE TEMPLATE="../libraryelements/AR_TwoDeepLeft_Navigation.element">
<div id="content">
<CFMODULE TEMPLATE="../../modules/mod_page_item_area_display.cfm" AreaID="108" PageID="#SMPPageVariables.PageID#">
<CFMODULE TEMPLATE="../../modules/mod_page_item_area_display.cfm" AreaID="109" PageID="#SMPPageVariables.PageID#">
<!--Sample of output    
<div class="tab">
    <h2 class="contentTrigger noprint"><a>What Is Important To Know</a></h2>
    <div class="toggle_content_container noprint">
        <div class="block">
            <h4>Info</h4>
            <p>Info:</p>
            <ul>
                <li>Words</li>
                <li>Words</li>
            </ul>
            <h4>Heading</h4>
            <p>Paragraph</p>
            <p>Paragraph</p>
        </div>
    </div>
</div>
-->    
</div>
<div class="hidden"><CFMODULE TEMPLATE="../../modules/mod_page_item_area_display.cfm" AreaID="110" PageID="#SMPPageVariables.PageID#"></div>
</div>
</body>
</html>

3 个答案:

答案 0 :(得分:4)

您的.不正确,使用ID时不需要h2。你想要这个:

jQuery.each(arr, function(index, value) {
    $("#" + value).addClass("testing");
});

答案 1 :(得分:1)

jQuery.each(arr, function(index, value) {
    $("h2#" + value).addClass("testing");
});

看起来你有一个不应该在那里的尖锐角色之前有一个点

答案 2 :(得分:1)

从选择器中移除.; "h2#" + value代替"h2.#" + value

所以代码看起来像

jQuery.each(arr, function(index, value) {
    $("h2#" + value).addClass("testing");
});