上一页 1 ··· 3 4 5 6 7
摘要: select orgid, orgname, parentorgid from org start with orgid= 'xx' <!-- 机构号 --> connect by prior orgid = parentorgid <!-- 对机构赋值为父机构 进行查询关联 --> 阅读全文
posted @ 2020-04-28 15:03 ASKANDANSWERS 阅读(1762) 评论(0) 推荐(0) 编辑
摘要: function getParamDate(n){ var date = new Date(); date.setDate(date.getDate() + n); var year = date.getFullYear(); var month = date.getMonth + 1; if(mo 阅读全文
posted @ 2020-04-28 12:11 ASKANDANSWERS 阅读(205) 评论(0) 推荐(0) 编辑
摘要: .input-group { position: relative; display: table; border-collapse: separate; width: 100%; } .input-group .form-control, .input-group-addon { display: 阅读全文
posted @ 2020-04-27 13:57 ASKANDANSWERS 阅读(5717) 评论(0) 推荐(0) 编辑
摘要: <input type="checkbox" id="checkbox_id" name="checkbox_name"/> 判断checkbox是否勾选:var flag = $("#checkbox_id").is(':checked'); 其中注意 is(':checked') 要有冒号“:” 阅读全文
posted @ 2020-04-24 10:25 ASKANDANSWERS 阅读(932) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html5</title> <style> body { margin: 0px; font-size: 12px; color: #938C43; line-height: 15 阅读全文
posted @ 2020-04-16 00:03 ASKANDANSWERS 阅读(605) 评论(0) 推荐(0) 编辑
摘要: <marquee></marquee>标签可实现文字滚动效果 如: <marquee><font size=+3 color=red>Hello, World</font></marquee> 可实现文字从右向左滚动的效果 <marquee></marquee>标签常用两个鼠标事件: onMouse 阅读全文
posted @ 2020-04-15 21:34 ASKANDANSWERS 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: 1、遇到问题: 定义的entity类型中content字段的类型为byte[], mybatis: <resultMap id="aa" type="xx.xx"><result property="content" column="CONTENT" jdbcType="BINARY"/></res 阅读全文
posted @ 2020-04-14 11:58 ASKANDANSWERS 阅读(190) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7