上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: 基本选择器: #id 根据Id匹配一个元素 $("#div1").css("background-color","red"); //匹配id为"div1"的元素 <div id="div1">我是一个DIV</div> //会选中该div元素 .class 根据给定的类名匹配一个元素 $(".imp 阅读全文
posted @ 2019-04-26 16:58 南風未起 阅读(395) 评论(0) 推荐(0)
摘要: DECLARE @PageIndex INT=1;DECLARE @PageSize INT=10; SELECT COUNT(1) As SumCount,@PageIndex AS PageIndex,@PageSize AS PageSize FROM ( --主体内容-- SELECT Ge 阅读全文
posted @ 2019-04-19 09:20 南風未起 阅读(171) 评论(0) 推荐(0)
摘要: 返回上一页,在PC端我们可以使用:history.go(-1)或者history.back(),可以正常返回第一层。这样,我们不需要上一页的 url 具体是什么,只要使用 history 一般都没啥问题。 但是在移动端,如果想要返回上一页。比如从A页面跳到B页面,如果B页面想返回A页面,为了防止不会 阅读全文
posted @ 2019-01-16 11:47 南風未起 阅读(988) 评论(0) 推荐(0)
摘要: 在实现不同端口号之间访问时遇到了跨域报错问题 前言 从 http://www.a.com/test.html 发起一个跨域请求, 请求的地址为: http://www.b.com/test.PH 在本地用ajax跨域访问请求时报错: XMLHttpRequest cannot loadhttp:// 阅读全文
posted @ 2019-01-15 16:47 南風未起 阅读(2594) 评论(0) 推荐(0)
摘要: 1 using Quartz; 2 using Quartz.Impl; 3 using System; 4 using System.Collections.Generic; 5 using System.Collections.Specialized; 6 using System.Linq; 7 using System.Text; 8 using Syst... 阅读全文
posted @ 2018-12-13 16:47 南風未起 阅读(725) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页