答案 0 :(得分:1)
$(function(){
$("ul.menubar").mouseover(function(){
$(this).mousemove(function(){
var bigger=0;
var offset=0;
$(this).find(" li ul li:last-child:visible").each(function(i,elem) {
offset = $(elem).offset().top + $(elem).height() - 120;
if(offset>bigger)bigger=offset;
});
$('#div_menu').height(bigger);
});
}).mouseout(function() {
$('#div_menu').css('height','auto');
});
});
答案 1 :(得分:0)
尝试使用jquery:
$("#divIdNeeded").on("mouseover", function () {
$("#parentDivId").css("height", "400px");
});