我正在尝试使用 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>