我有一个带有标题和空正文的表格:
<table style="width:50%;" class="adminlist">
<thead>
<tr>
<th style="width:80%;">Number</th>
<th style="width:20%;">Quantity</th>
<th style="width:20%;"></th>
</tr>
</thead>
<tbody id="body_orderproducts">
<tr style="background-color: rgb(170, 170, 170);"> <td class="kmx_nodata" colspan="3">NO DATA.</td>
</tr>
</tbody>
</table>
现在,我加载数据并用 ajax 函数填充 tbody:
var baseurl = '<?php echo HtmlHelper::getComponentPath(true); ?>';
var urlquery_ajax = '<?php echo RouteHelper::urlQueryWithRawAndToken('order&task=');?>';
var order_id = <?php echo $this->item->id;?>;
var kmx = jQuery.noConflict();
kmx().ready(function() {
/**
* Ajax call to load the products linked to the order
*/
function loadTableProducts() {
var myProductTableBody = kmx('#body_orderproducts');
myProductTableBody.empty();
kmx.ajax({
type: "POST",
url: baseurl,
cache: false,
data: urlquery_ajax + "getOrderProductsInJsonFormatAjax&order_id=" + order_id,
success: function(data){
data = kmx.parseJSON(data);
var myProductTableBody = kmx('#body_orderproducts');
populateTable(myProductTableBody, data);
},
failure: function(msg){
msg = kmx.trim(msg);
alert('Error: ' + msg.responseText);
}
});
}
/**
* Populate the table
*/
function populateTable(myTBodyObj, myData) {
if (myData.rows.length > 1) {
kmx.each(myData.rows, function(index,item) {
myTBodyObj.append('<tr><td>' + item.number + '</td><td align="right">' + item.quantity + '</td><td><img id="delete_product_' + item.id + '" name="delete_product_' + item.id + '" class="kmx_image_delete" alt="<?php echo JText::_( 'Delete this product'); ?>" src="components/com_cmpningbo/assets/images/delete.png" /></td></tr>');
});
}
else {
myTBodyObj.append('<tr><td colspan="2" class="kmx_nodata"><?php echo JText::_( 'NO DATA.'); ?></td></tr>');
}
return;
}}
loadTableProducts();
});
一切正常,结果类似于:
现在,我想添加一个代码来处理单击图像“删除”时的事件:
kmx('img[name^="delete_product_"]').live('click', function() {
alert('click');
return false;
});
每个“删除”图像都有一个 id 和名称,例如:delete_product_XX,其中 XX 是要删除的记录的 ID。当表格主体以 ajax 加载时,该代码不起作用,但在页面加载(无 ajax)上加载表格主体时,该代码有效。我已经检查过这个问题,似乎关于图像的直播有问题?我不知道如何解决?任何的想法?