摘要: 一个元素有两个class名怎么选中 阅读全文
posted @ 2020-05-12 14:35 姜佳泉 阅读(464) 评论(0) 推荐(0) 编辑
摘要: div隐藏滚动条+具备滚动功能 PS: 给需要滚动的元素添加伪选择器,:: webkit scrollbar{width:0;}, 将宽度设为0,滚动条就会隐藏。!!!!!!!!!!!!!!!!!!!!!!!! 强烈推荐:https://blog.csdn.net/csdn_cai_csdn/art 阅读全文
posted @ 2020-05-12 11:30 姜佳泉 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: id为定向选择依据,class类选择器为辅助,创建派生选择器即可定向控制 阅读全文
posted @ 2020-05-09 16:18 姜佳泉 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 引入文件:链接: https://pan.baidu.com/s/1diKFQqWBijjkB5mP7Pir5Q 提取码: fibe 阅读全文
posted @ 2020-05-03 22:59 姜佳泉 阅读(383) 评论(0) 推荐(0) 编辑
摘要: ``` using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace FK_UAS.Models { public class organizationTreeComment { public string u_name { get; set; } public stri 阅读全文
posted @ 2020-04-28 14:38 姜佳泉 阅读(173) 评论(0) 推荐(0) 编辑
摘要: ``` ``` ![](https://img2020.cnblogs.com/blog/1261986/202004/1261986-20200422172432377-830313193.png) 阅读全文
posted @ 2020-04-22 17:25 姜佳泉 阅读(475) 评论(0) 推荐(0) 编辑
摘要: jquery 根据自定义属性选择 阅读全文
posted @ 2020-04-17 14:14 姜佳泉 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 使用: 参考:https://www.cnblogs.com/cpcpc/p/7233898.html 出处:https://www.cnblogs.com/cpcpc/p/7233898.html 阅读全文
posted @ 2020-04-03 17:24 姜佳泉 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 出处:https://www.cnblogs.com/jack liang/archive/2011/04/01/2001868.html 阅读全文
posted @ 2020-03-27 09:12 姜佳泉 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 父页面 子页面 借鉴文章: https://fly.layui.com/jie/61122/ https://www.cnblogs.com/zhaow/p/9753836.html https://www.layui.com/doc/modules/layer.html 阅读全文
posted @ 2020-03-18 16:51 姜佳泉 阅读(1992) 评论(0) 推荐(0) 编辑
摘要: 前端 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>组织架构</title> <link rel="stylesheet" href="~/layuimini-master/lib/layui-v2.5.5 阅读全文
posted @ 2020-03-08 21:51 姜佳泉 阅读(4761) 评论(0) 推荐(0) 编辑
摘要: 前台Ajax传递数据 <head> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> </head> $.ajax({ url: "/organization/organizationTree 阅读全文
posted @ 2020-03-08 21:32 姜佳泉 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1.Server 2012 R2配置.NET Framework 3.5 2.服务器管理器/仪表板 Sxs文件链接: https://pan.baidu.com/s/1Pg2CDoNAO0OSEQN6ruP0zQ 提取码: km59 复制这段内容后打开百度网盘手机App,操作更方便哦 安装配置Ora 阅读全文
posted @ 2019-12-30 14:18 姜佳泉 阅读(236) 评论(0) 推荐(0) 编辑
摘要: ```&&op1 && op2当op1和op2都是true时,返回true ;如果op1的值是false,则不运算右边的操作数||op1 || op2当op1和op2有一个是true时,返回true;如果op1的值是true,则不运算右边的操作数!! op当op是false时,返回true;当op是true时,返回false&op(www.111cn.net)1 & op2运算op1和op2;如果... 阅读全文
posted @ 2019-11-20 08:54 姜佳泉 阅读(355) 评论(0) 推荐(0) 编辑
摘要: .html() 方法?1、定义及用法:html()方法返回被选元素的内容,即括号内未设置参数。 若设置参数,返回设置参数的内容。 并且该参数内容覆盖所有想匹配的元素的内容 参数可为函数,即function(index,dcontent) index可选,接收选择器的 index 位置。 dconte 阅读全文
posted @ 2019-11-17 20:57 姜佳泉 阅读(2406) 评论(0) 推荐(0) 编辑
摘要: ```Js逻辑View_Detail?data='+data.zjb_ID+'&'+data.D_Name或Response.Redirect("/Login_/Index?Login_state=false",true);``` 阅读全文
posted @ 2019-11-17 20:43 姜佳泉 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 问号传值有以下三种方法: 方法一: 方法三: 阅读全文
posted @ 2019-11-15 14:58 姜佳泉 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: JS: let s = '[1, 2, 3, 4]'; 序列化成字符串:let f = JSON.stringify(s); 反序列化成对象:let s = JSON.parse(f); 后端: 导入Newtonsoft.Json命名空间 using Newtonsoft.Json; 序列化成字符串 阅读全文
posted @ 2019-11-14 14:45 姜佳泉 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 前端 注:监听工具条没有详细写,但路子一样的 Json序列化 总结 https://www.cnblogs.com/jsll/p/11857205.html 阅读全文
posted @ 2019-11-14 10:38 姜佳泉 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 前端 <head> <meta name="viewport" content="width=device-width" /> <title>JJQ-BootStrapTable-Index</title> <!-- 新 Bootstrap 核心 CSS 文件 --> <link href="htt 阅读全文
posted @ 2019-11-13 09:22 姜佳泉 阅读(192) 评论(0) 推荐(0) 编辑