0

我正在尝试使用 jquery 将唯一的 passnum 值传递给不同的区域信息,以便 passnum 信息特定于特定区域。例如 zone1 可能 passnum = 100 而 zone2 可能有 50

<h5> </h5>是否可以使用 jquery 根据区域将唯一的 passnum 值传递给每个区域?因为可能有数百个动态创建的区域块。

<div class="wrapper" class="zone1">

other divs here (could have unknown amount of div block or tages here


<div ><span class="pass-num"><h5>some num  </h5></span> </div>

</div>



<div class="wrapper" class="zone2">

other divs here (could have unknown amount of div block or tages here


<div><span class="pass-num"><h5>some num(pass val here)  </h5></span> </div>

</div>

I have cthe ode below which works when u know the zone and structure

$(document).ready(function() {

            var passnum ="110";
            var passtext="All";


            $('div.pass-text>h4').text(passtext);
            $('div.pass-num>h4').text(passnum);





    });
    </script>
4

1 回答 1

0

给定你的 html,这个函数应该这样做:

function get_passnum(zone) {
   return $('.zone'+zone+' .pass-num').text();
}

像这样使用它:

passnum = get_passnum(2);

查看工作演示

于 2012-10-23T13:57:20.923 回答