单击按钮后如何编辑特定td中的值

时间:2015-09-21 05:42:37

标签: javascript php jquery html

这是我的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上的值?

感谢您的帮助

1 个答案:

答案 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 值。

马布海!