menu a span {/*先把说明的span隐藏*/ display:none;} menu a:hover { border-color:#c00;边框颜色红色*/ } menu a:hover span { display:block;设置为块级元素*/ position:absolute;使用绝对定位*/ height:0;高度为...
动态获取父标签宽度 var parent_width=$(".parent").width();("#p_width").text(parent_width);获取子标签宽度 var son_width=$(".son:first").outerWidth();("#s_width").text(son_width);取余数 var remainder=...