Jqueryで簡単なコードを実装しようとしています。クラスの任意の要素をクリックすると、 helloというポップアップが表示される必要があります。
私はこれを試しました:
$(document).ready(function(){
$(".thumb_radio").click(function(){
alert("hello");
});
});
しかし、これは機能しません。
HTMLは次のようなものです。
<tr>
<td>
<input id="thumb_radio_0" class="thumb_radio" type="radio" value="0" name="thumbnail_template">
Please select ...
</td>
</tr>
<tr>
<td>
<input id="thumb_radio_1" class="thumb_radio" type="radio" value="1" name="thumbnail_template">
one
</td>
<td>
<input id="thumb_radio_2" class="thumb_radio" type="radio" value="2" name="thumbnail_template">
two
</td>
<td>
<input id="thumb_radio_3" class="thumb_radio" type="radio" value="3" name="thumbnail_template">
three
</td>
<td>
<input id="thumb_radio_4" class="thumb_radio" type="radio" value="4" name="thumbnail_template">
four
</td>
</tr>
私は何が欠けていますか?