11 2021 档案
摘要:1.公共 common model 2.数据 dal idal 3.业务 bll ibll 4.显示 ui
阅读全文
摘要:/* * 接口 * 只负责声明 不负责实现 * 它代表的是一种能力 * 成员只能声明,不能包含实现,方法不能有{} * 成员默认为public,而且只能是public */ /* object 一切皆对象 1.重写override与重载 重写:函数名,参数个数及类型,返回值要保持一致 virtual
阅读全文
摘要:/* 类的成员:字段、属性、方法... 字段:存储数据,一般都是私有的 属性:对字段进行验证,过滤非法数据,保护字段=〉方法get_属性名()set_属性名(valuel) get:获取 set:设置 get, set 方法:方法名(参数列表){方法体}、 重载:同一个类中方法名相同,参数不同的多个
阅读全文
摘要:// 鼠标 $(".mask").hover(function(){ $(".float_layer").show(); $(".big_box").show(); },function(){ $(".float_layer").hide(); $(".big_box").hide(); }) //
阅读全文
摘要:<script src="js/jquery-3.3.1.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> $(function(){ // 内部插入 子节点 $(".ap
阅读全文
摘要:// contains 包含文本 // $("li:contains(dadada)").css("color","red") // // has 选择器 // $("li:has(.span)").css("color","green") // // 空的 // $("li:empty").css
阅读全文
摘要:// document.getElementById() id // document.getElementsByClassName() class // document.getElementsByName() name // document.getElementsByTagName() < /
阅读全文
摘要:轮廓线 outline: none;focus获取焦点 background-position: 0 1px; 将其他页面添加到本页面位置<iframe src="toubu.html" width="100%" height="178px" ></iframe>
阅读全文

浙公网安备 33010602011771号