【jquery代码】
require(["jquery","validate","bootstrap","lhgcalendar"],function($) {
$(function(){
$("form").validate();
});
$(".up").click(function(){
$(this).parent().parent().parent().parent().next().slideToggle("slow");
});
});
【HTML代码】