我正在開發新的.net和使用jQuery。我試圖隱藏/顯示我的網頁上的下拉列表和複選框。我可以成功地躲起來,但是當我試圖表明沒有任何反應或者我得到一個錯誤在我的代碼是這樣的:如何使用jquery隱藏/顯示dropdownlist
http://imageshack.us/photo/my-images/811/sinttuloxs.jpg/
我試着用秀的形式型動物沒有任何成功。
$("#ddListaPrecios").Show();
或
$('#ddListaPrecios').Show('slow');
$(document).ready(function() {
$("#ddListaPrecios").hide();
$("#codigoCliente").autocomplete({
minLength: 1,
source: getData,
select: function(event, ui) {
cambiaElementos(ui.item.value);
updateCiudades(ui.item.value);
updateListaVendedores(ui.item.value);
updateListaPrecios(ui.item.value);
}
});
$("#codigoCliente").change(function() {
if ($("#codigoCliente").val().length == 6) {
cambiaElementos($("#codigoCliente").val());
updateCiudades($("#codigoCliente").val());
updateListaVendedores($("#codigoCliente").val());
updateListaPrecios($("#codigoCliente").val());
$("#ddListaPrecios").show();
}
});
$("#ddListaPrecios").change(function() {
//window.alert($("#ddListaPrecios").val());
changePrecio($("#ddListaPrecios").val());
});
$("#ddCiudad").change(function() {
updatePuntosEntrega($("#codigoCliente").val(), $("#ddCiudad").val());
});
});
<label>Lista de Precios: </label>
<label id="lbListaPrecios"> </label>
<%= Html.DropDownList("ddListaPrecios") %>
<!-- <%= Html.CheckBox("cbCambioLista") %> <label class="inline" for="cbCambioLista">Desea cambiar lista de precios?</label> -->
Ĵ avascript區分大小寫和jquery.Show不存在 – jbabey 2012-03-01 16:00:16
我的博客http://blogs.msdn.com/b/rickandy/archive/2012/01/09/cascasding-dropdownlist-in-asp-net-mvc.aspx顯示這個。另請參閱查看我的DDL教程http://www.asp.net/mvc/tutorials/javascript/working-with-the-dropdownlist-box-and-jquery/using-the-dropdownlist-helper-with-aspnet-mvc – RickAndMSFT 2012-03-01 23:01:07