如何删除Zend中选中的默认单选按钮

时间:2018-10-24 07:24:22

标签: javascript php zend-framework

嗨,我正在尝试删除 radio 按钮

的默认选中值

这是我的代码:

 <?php if ($this->isAllowed('order.customer.ticket-details')) : ?>
<fieldset class="order-obv-ticket">
    <legend><?php echo $this->translate('order_obv_ticket'); ?></legend>
    <div id="order-ticket-details"></div>
</fieldset>
<?php endif;?>

这是我的js函数:

    function getOrderTicketDetails(orderId, contactId)
    {
        $.ajax({
            url: vbdURL+'/order/customer/ticket-details',
            data:{orderId : orderId,
                  contactId :  contactId },
            type: 'POST',
            success:function(response){
                $('#order-ticket-details').html(response);
                if(null != order['requestTicketId']){
                    $("#ticketId-"+ order['requestTicketId']).prop('checked', true);
                } else {
                    if (0 < $("input[id^='ticketId-']").length) {
                        $("input[id^='ticketId-']:first").prop('checked', true);
                        order['requestTicketId'] = $("input[id^='ticketId-']:first").val();
                    } 
                }
            }
        });

}

这是我的单选按钮:

<span class="actions">
<input name="ticketId" id="ticketId-{{ticketId}}" type="radio" class="selectAll js-set-order-ticket" value="{{ticketId}}"/>

任何人都可以帮助我,如何取消选中默认单选按钮。

谢谢。

1 个答案:

答案 0 :(得分:-1)

我已经解决了我的问题

$("input[id^='ticketId-']:first").prop('checked', true);

TO

$("input[id^='ticketId-']:first").prop('checked', false);