我想在我的网页中使用 javascript 中的 fadeIn 和 fadeOut;但它不起作用;这是我的代码;你能告诉我问题出在哪里吗?它根本没有淡入和淡出!!!
$(document).ready(function () {
$("#DropDownList1").each(function () {
$('ListItem', this).each(function () {
if ($(this).attr("selected") == true)
if (($(this).text() != "a")) {
$("div#select").fadeOut();
}
else {
$("div#select").fadeIn();
}
});
});
});
这是我的下拉列表:
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Value=""></asp:ListItem>
<asp:ListItem Value="m">a</asp:ListItem>
<asp:ListItem Value="m1">b</asp:ListItem>
</asp:DropDownList>
这是我的实际html:
<td class="style5" width="20%">
situation:
<br>
<select id="DropDownList1" name="DropDownList2">
<option value=""></option>
<option value="m">a</option>
<option value="m1">b</option>
</select>