0

我正在尝试这样做

$("input[id^='card_sf_guard_user_profile_payment_card_']").change(function(){
    $('#cardForm').hide();
    $('#useNewCard').show();
    return false;
});

To trigger the function when any radio buttons with ids starting with card_sf_guard_user_profile_payment_card_are selected.

似乎没有选择收音机。

有人知道为什么吗?

4

1 回答 1

2

在运行时创建元素..?使用.on

$(document).on('change','input[id^="card_sf_guard_user_profile_payment_card_"]',function(){
    $('#cardForm').hide();
    $('#useNewCard').show();
    return false;
});

小提琴

于 2013-06-08T16:59:45.470 回答