嗨,这是我的点击功能。它适用于 chrome 和 firefox,但可以在 IE9 上执行任何操作
当我单击下拉框时,不要在 IE9 上运行单击功能。
脚本:
$('.lstKuralTipleri option').click(function() {
switch ($('.lstKuralTipleri :selected').index()) {
case 0:
$('.SartliFormatDegereGore').slideDown();
$('.SartliFormatTariheGore').slideUp();
break;
case 1:
$('.SartliFormatTariheGore').slideDown();
$('.SartliFormatDegereGore').slideUp();
break;
}
});
象素
<asp:ListBox style="padding-top:3px" runat="server" ID="lstKuralTipleri" CssClass="lstKuralTipleri" Width="805px">
<asp:ListItem Text="> Kolon değerine göre" Selected="True"/>
<asp:ListItem Text="> Tarihe göre"/>
</asp:ListBox>