摘要: css 默认样式重置 1 @charset "utf-8"; 2 *{margin:0;padding:0;} 3 img {border:none; display:block;} 4 em,i{ font-style:normal;} 5 body, div, dl, dt, dd, ul, o 阅读全文
posted @ 2019-11-20 17:02 野鹤亦闲云 阅读(709) 评论(0) 推荐(1) 编辑
摘要: 此小案例适合数据较少的类似三级联动的小效果,省市区三级联动参见 https://www.cnblogs.com/xiaoyaolang/p/11896484.html <body> <select name="" id="prov"> <option value="">请选择省</option> < 阅读全文
posted @ 2019-11-20 11:54 野鹤亦闲云 阅读(475) 评论(0) 推荐(3) 编辑
摘要: 偶遇大神三级联动,顿觉新颖,借鉴之。 展示图 html <style> .box{width:80%; margin:20px auto} .box p{line-height:24px} </style> <body> <div class="box"> <p>三级联动</p> <p>没有数据的s 阅读全文
posted @ 2019-11-20 11:16 野鹤亦闲云 阅读(805) 评论(0) 推荐(1) 编辑
摘要: jquery attr 1 <script> 2 3 // 获取class 名 4 $(".box").attr("class") 5 6 // 修改或添加class名,有(用class获取)就是修改,没有(用id获取)就是添加 7 $("#box").attr("class","men") 8 9 阅读全文
posted @ 2019-11-20 10:04 野鹤亦闲云 阅读(1093) 评论(0) 推荐(0) 编辑