摘要: 1 * $("*") 所有元素 2 #id $("#lastname") id="lastname" 的元素 3 .class $(".intro") 所有 class="intro" 的元素 4 element $("p") 所有 <p> 元素 5 .class.class $(".intro.d 阅读全文
posted @ 2020-07-31 13:03 坐拥百态 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 2.在 "调试" 菜单中选择"打开配置" 会打开 launch.js 文件 添加以下配置. 3.运行Vue项目.(npm run dev) 4.打开要调试的vue文件,选择要使用的浏览器. 点击开始调试 浏览器就会自动运行,输入网页地址就可以调试了. 阅读全文
posted @ 2018-10-18 14:24 坐拥百态 阅读(2399) 评论(0) 推荐(0) 编辑
摘要: public static string RequestPost(string Url, string parameter, string ContentType = "application/x-www-form-urlencoded") { HttpWebRequest hwrq = (HttpWebRequest)WebRequest.Create... 阅读全文
posted @ 2018-05-02 09:54 坐拥百态 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Json到对象: 对象到Json: Xml转对象: 对象到xml: 阅读全文
posted @ 2018-04-28 10:24 坐拥百态 阅读(129) 评论(0) 推荐(0) 编辑
摘要: SqlServer去除重复查询第一条数据: select ID from( select *, row_number() over (partition by SynCode order by id) as RowNum from syn_table ) s where s.RowNum = 1 S 阅读全文
posted @ 2018-04-28 10:08 坐拥百态 阅读(553) 评论(0) 推荐(0) 编辑
摘要: public static FastReport.EnvironmentSettings eSet = new EnvironmentSettings();eSet.ReportSettings.ShowProgress = false; 阅读全文
posted @ 2018-04-28 09:54 坐拥百态 阅读(420) 评论(0) 推荐(0) 编辑