当我添加以下代码以使表格下拉时,它就不对齐了。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$("table").slideToggle("slow");
});
});
</script>
我还添加了“display:none;”属性到表,所以它只会在下拉启动后出现。提前致谢