我有以下元素:
<ul id="towns">
<li class="clearfix odd 516_499_132_0_0 town132">...</li>
</ul>
我需要为一个参数提取类“town132”,但数字(例如 132)是可变的。
我该如何提取?
$('#towns').children('li').each(function() {
parameter = $(this). // ???
});
我有以下元素:
<ul id="towns">
<li class="clearfix odd 516_499_132_0_0 town132">...</li>
</ul>
我需要为一个参数提取类“town132”,但数字(例如 132)是可变的。
我该如何提取?
$('#towns').children('li').each(function() {
parameter = $(this). // ???
});