2017-10-07 83 views
-1

我有一个按钮,将禁用,如果发生某些情况。它就像当order_status是接受那么接受的按钮被禁用。当order_status处于待处理状态时,其他按钮中的相同,则发送按钮被禁用。我怎样才能做到这一点?使用jquery禁用/启用按钮

现在发生的事是我可以禁用ASD按钮,但是当我将#asd更改为#submitAccept时,它没有禁用接受按钮,这怎么可能?

但现在,帮助我如何才能实现当order_status被接受按钮接受被禁用。我希望你能用我的概率帮助我,我不知道该怎么做。非常感谢你们的帮助,谢谢!

继承人我的代码现在。

function viewOrder(order_id, order_id, user_id, order_date, order_time, order_deliveryCharge, order_totalAmount, address, coordinates, driver_number, order_status) { 
 
    
 
    document.getElementById("t_order_id").setAttribute("value", order_id); 
 
    document.getElementsByName("ORDER_ID_MODAL_2")[0].setAttribute("value", order_id); 
 
    document.getElementById("t_user_id").setAttribute("value", user_id); 
 
    document.getElementById("t_order_date").setAttribute("value", order_date); 
 
    document.getElementById("t_order_time").setAttribute("value", order_time); 
 
    document.getElementById("t_order_deliveryCharge").setAttribute("value", order_deliveryCharge); 
 
    document.getElementById("t_order_totalAmount").setAttribute("value", order_totalAmount); 
 
    document.getElementById("t_address").setAttribute("value", address); 
 
    document.getElementById("t_coordinates").setAttribute("value", coordinates); 
 
    document.getElementById("t_drivers_number").setAttribute("value", driver_number); 
 
    document.getElementById("t_order_status").setAttribute("value", order_status); 
 
    document.getElementById("ORDER_MODAL_ACCEPT").setAttribute("value", order_id); 
 
    document.getElementById("ORDER_MODAL_DELIVER").setAttribute("value", order_id); 
 
    document.getElementById("ORDER_MODAL_CANCEL").setAttribute("value", order_id); 
 
    
 
    
 
    $(document).on("click", "#asd", function() { // MY JQUERY 
 
     if ($("#t_order_status").val() == "Accepted") { 
 
       $("#asd").prop("disabled", true); 
 
     } 
 
    }); 
 
    
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> 
 
<div class="form-group"> 
 
    <label for="order_status" class="col-sm-2 control-label" style="width:20%;">Order Status</label> 
 
    <input type="text" class="form-control" name="order_status" id="t_order_status" style="width:80%;" placeholder="" value="" required="required" readonly> 
 
    </div> 
 
    
 
    <button type="button" input style="background-color:#4CAF50;color:white;border-color:#000000;" name="submitDelivered" id="submitDelivered" class="btn btn-success" data-toggle="modal" data-target="#myDeliverModal" onclick="deliver('<?= $_POST['order_id'] ?>')" > Delivered </button> 
 
    <button type="button" input style="background-color:#0000FF;color:white;border-color:#000000;" name="submitAccept" id="submitAccept" class="btn btn-success" data-toggle="modal" data-target="#myAcceptModal" onclick="accept('<?= $_POST['order_id'] ?>')" > Accept </button> 
 
    <button type="button" style="background-color:#FFFF00;color:black;border-color:#000000;" class="btn btn-success" data-toggle="modal" data-target="#myDropdown" onclick="send('<?= $_POST['order_id'] ?>')"> Send </button> 
 
    <button type="button" input style="background-color:#f44336;color:white;border-color:#000000;" name="submitCancel" id="submitCancel" class="btn btn-success" data-toggle="modal" data-target="#myCancelModal" onclick="cancel('<?= $_POST['order_id'] ?>')">Cancel</button> 
 
    <button type="button" name="asd" id="asd" class="btn btn-primary" onclick="asd"> ASD </button>

+0

*“但是当我将#asd更改为#submitAccept时,它没有禁用接受按钮”* - 请[编辑]问题以显示不起作用的代码。为什么'viewOrder()'函数中的'.on(“click”)'代码?另外,不要使用'.setAttribute(“value”,order_id)'来设置一个元素的值,只要说'.value = order_id'。 – nnnnnn

+0

@nnnnnn因为我需要先点击viewOrder才能禁用按钮。 – Dragon12

回答

0

使用.disabled方法,并将其设置为true。

window.onload = function() { 
    if(document.getElementById("t_order_status").value == "Accepted") { 
     document.getElementById("asd").disabled = true; 
    } 
} 
+1

*“使用.disabled方法”* - 这不是一种方法,它是一种属性。但无论如何,为什么OP的jQuery不会做同样的事情呢?你为什么要从点击处理程序更改为'window.onload'处理程序? – nnnnnn