私は2つのラジオコントロールを持っています:
<fieldset id="sort">
<label for="sort">Sort: </label>
<input class="sortDirection" type="radio" id="asc" name="sortDirection"><label for="asc">asc</label>
<input class="sortDirection" type="radio" id="desc" name="sortDirection"><label for="desc">desc</label>
</fieldset>
私が使用しているjqueryは次のとおりです。
$(document).ready(function(){
$('#sort').buttonset();
});
$('#asc').on("change", function(event){
alert("CHANGE EVENT!");
});
私も試しました(同じ結果で):
$('#sort input[type="radio"]').on("change", function(event){
alert("CHANGE EVENT!");
});
アラートは実行されません。ここで何が間違っていますか?