【发布时间】:2014-07-03 16:39:34
【问题描述】:
此子菜单在点击小型设备(320 像素)时显示。让这个子菜单出现在大型设备(1024px)的悬停上。
jquery
<script type="text/javascript">
$(document).ready(function() {
$('ul.subcat').hide();
$('li').click(function(event) {
event.stopPropagation();
$('> ul', this).toggle();
});
});
</script>
【问题讨论】: