Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
530 views
in Technique[技术] by (71.8m points)

javascript - How to remove radio button default checked in zend

HI guys i am trying to remove the default checked value for radio button

Here is my code:

 <?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;?>

Here is my js function:

    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();
                    } 
                }
            }
        });

}

Here is my radio button:

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

Can anyone help me how can i make default radio buttons should be unchecked.

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I Have solved my problem by chaging this line

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

TO

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...