02 2016 档案

摘要:1.选择器 (1)通配符: $("input[id^='code']");//id属性以code开始的所有input标签 $("input[id$='code']");//id属性以code结束的所有input标签 $("input[id*='code']");//id属性包含code的所有inpu 阅读全文
posted @ 2016-02-17 11:20 idiot_ioi 阅读(210) 评论(0) 推荐(0)
摘要:将Date格式日期在前端页面显示需要在代码中转换为String形式 List<IndustryBean> list=industryService.getByletterOrDateList(industryBean); for (int i = 0; i < list.size(); i++) { 阅读全文
posted @ 2016-02-17 10:20 idiot_ioi 阅读(6418) 评论(0) 推荐(0)
摘要:1.新建一个jsp表单 用到multipart <form id="form2" method="post" enctype="multipart/form-data" action="<%=basePath%>uploadftp.shtml"> <input type="file" name="f 阅读全文
posted @ 2016-02-16 16:06 idiot_ioi 阅读(1017) 评论(0) 推荐(0)