这是在表格单元格中返回类别 ID 的代码:
<td headers="el_state" align="left" valign="top">
<div id="el_preis">
<?php echo $row->catid ? $this->escape($row->catid) : '-';?>
</div>
</td>
有8个不同的类别。我尝试使用以下代码更改带有价格的 ID。只是第一行中的 ID 发生了变化。
$("#el_preis:contains('1')").html("295 €");
$("#el_preis:contains('2')").html("295 €");
$("#el_preis:contains('3')").html("65 €");
$("#el_preis:contains('4')").html("115 €");
$("#el_preis:contains('5')").html("200 €");
$("#el_preis:contains('6')").html("200 €");
$("#el_preis:contains('7')").html("200 €");
$("#el_preis:contains('8')").html("295 €");
我必须改变什么?