我有這樣的表格形式:直播()jQuery函數不能正常工作
<?php while($resulat = $sql_adherent->fetch_object()): ?>
<tr>
<td class="highlight">
<div class="important"></div>
<a href="#"><?php echo $resulat->nom_compte; ?></a>
</td>
<td class="hidden-xs"><?php echo $resulat->cin; ?></td>
<td class="hidden-xs"><?php echo $resulat->sexe; ?></td>
<td><?php echo $resulat->date_naissance; ?></td>
<td></td>
<td><?php echo $resulat->date_effet; ?></td>
<td><?php echo $resulat->date_expiration; ?></td>
<td><a href="#" class="btn default btn-xs red-stripe" id="validate">Validate</a></td>
</tr>
我要改變「驗證」,以「驗證」的onclick的ID =「驗證」 和我使用生活()函數來做到這一點,但它不工作
這裏是我使用的代碼:
$("#validate").live('click', function(e){
e.preventDefault();
$(this).addClass('green-stripe');
$(this).removeClass('red-stripe');
$(this).html('Validated');
});
我試圖改變代碼來切換「V alidate「&‘驗證’使用此代碼,
$("#validate").toggle(function(e){
e.preventDefault();
$(this).addClass('green-stripe');
$(this).removeClass('red-stripe');
$(this).html('Validated');
}, function(){
$(this).addClass('red-stripe');
$(this).removeClass('green-stripe');
$(this).html('Validate');
});
,但也不起作用。我知道我做錯了什麼事,但可以」 T發現錯誤..
您使用jQuery的哪個版本?閱讀https://api.jquery.com/category/deprecated/ –
您是否嘗試過使用綁定? –
我正在使用jquery-1.10.2.min – Mariem