デフォルトでフォームのラベルとテキストボックスを非表示にし、オプションが選択されたときにそれらを表示しようとしています。コードが失敗し続ける理由がわかりません。
<tr>
<td><label>My Label</label></td>
<td>
<select name="1" id="1">
<option value="2" selected="selected">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="Other">Other</option>
</select>
</td>
<td><label class=".otherHide">Other</label></td>
<td><input class=".otherHide" type="text" name="otherSpec" id="otherSpec" /></td>
</tr>
jQuery(document).ready(function()
{
jQuery('#1').change(function()
{
jQuery('#1 option:selected').each(function()
{
if (jQuery(this).text() == 'Other')
{
jQuery('.otherHide').each(function()
{
jQuery(this).animate({opacity: 0.0}, 2000);
});
}
});
}).change();
});
現在、テストしていたフォーム要素を非表示にするように設定されています。
私はもともとクラスを使用していなかったので、それを横断しようとしました。それで駄目だったので、授業に頼って失敗しました。
jQuery が要素を選択しないのはなぜですか? >.<