2 つのラジオ ボタンに割り当てられているクリック ハンドラーの非常に単純なjsFiddle の例を作成しました。
$(document).ready(function () {
$(".title").on("click", function (event) {
alert('clicked');
});
});
ご覧のとおり、ラジオ ボタンが選択されるたびにハンドラーが 2 回呼び出されるのはなぜですか?
<label class="title">
<input type="radio" name="heading" checked="checked" />Introduction and General Information about the Marketing Tool
</label>
<label class="title">
<input type="radio" name="heading" />Implementation Steps of the Marketing Tool
</label>