1029 次
2 に答える
4
これは、HTML が無効なために発生しています。
<label>
HTML の先頭近くで、タグを開きます。そのタグ内で、<label>
タグを開きます<div>
。次に、<label>
タグを閉じる前にタグを閉じ<div>
ます。
これはノーノーです。</label>
タグを移動すると機能します。
変更: jsFiddle
<label><strong>Class Scholarships</strong>
<!--Dropdown if selected-->
<div id="ifClassScholashipsSelected">
<em>Please select the appropriate class below</em></label> <br />
宛先: jsFiddle
<label><strong>Class Scholarships</strong></label>
<!--Dropdown if selected-->
<div id="ifClassScholashipsSelected">
<em>Please select the appropriate class below</em><br />
于 2012-08-30T19:10:57.857 に答える
0
この行による問題
<label><strong>Class Scholarships</strong>
<!--Dropdown if selected-->
<div id="ifClassScholashipsSelected">
<em>Please select the appropriate class below</em></label> <br />
<select name="SelectedClassYear">
Div の前にラベルを開き、Div で閉じます。
<label>
<div>
</label>
</div>
これは JsFiddleデモです
于 2012-08-30T19:16:19.443 に答える