这是我的button
<button id="Modify" role="button" class="btn btn-warning" disabled>Modify</button>
这是Modify button
$("#Modify").click(function(e) {
e.preventDefault();
var id = $('#cLoanOut2 tr.active').attr('id');
bootbox.confirm("Are you sure you want to modify this order?","No","Yes",function(r){
if(r) {
$.ajax({
url : "<?php echo $server_name; ?>/emcis_coopmain/process/PHP_groceryReleasingProcess.php",
type : "POST",
async : false,
data : {
empgrocmstID:id,
todo:"Modify"
},
success:function(result){
bootbox.alert('Order Modified',function(){
$("#Modify").attr("disabled", true);
});
loadTable();
}
});
} else {
}
});
});
td
php
$html .= "<td class='qty_ordered' style='text-align:right'>$qty_ordered</td>";
点击修改按钮后如何编辑该td上的值?
感谢您的帮助
答案 0 :(得分:0)
如果该类特定于$("td.qty_ordered").html("<Your new value here>");
,那么就像
td
此外,如果我的假设是正确的,您可以在success()
来电中更改ajax()
功能中的Select * from product
where name like "%abc%"
limit 50
union all
Select *
from product
where name like "%xyz%"
limit 50
值。
马布海!