我有 div,它的 id 是:manufacturer_63 ......它的风格是:显示:无,可见性:隐藏。
我写的是:
$('select.styled2').change(function() {
var id = this.value;
$.ajax({
type: "GET",
url: 'index.php?act=manufacturerHome&id='+id,
success: function(data) {
$("#manufacturer_"+id).html(data);
}
});
$("#manufacturer_"+id).css('visibility','visible');
$("#manufacturer_"+id).toggle("slow");
});
它不会切换它。如果我尝试:
$("#manufacturer_"+id).css('display','block');
而不是切换 - 它有效。
如果我只是切换它可以工作的东西。