上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页

2017年8月12日

摘要: function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null) 阅读全文
posted @ 2017-08-12 11:13 幽默是一种心情 阅读(13706) 评论(0) 推荐(0) 编辑
 
摘要: $(function(){ var pn = $("#gotopagenum").val(); //#gotopagenum是文本框的id属性 location.href = "NewList.aspx?pagenum="+pn; //location.href实现客户端页面的跳转 }); 阅读全文
posted @ 2017-08-12 09:30 幽默是一种心情 阅读(20975) 评论(0) 推荐(1) 编辑
 

2017年8月11日

摘要: background:url(../images/logo.jpg) no-repeat center ; 阅读全文
posted @ 2017-08-11 17:31 幽默是一种心情 阅读(1363) 评论(0) 推荐(0) 编辑
 

2017年8月7日

摘要: 在C# 后台将String类型转换成int 有以下几种方法: (1) int.TryParse(string); (2) Convert.Toint32(string); (3) (int)string; 但是, 使用Convert.ToInt32(string) 会出现输入字符串格式错误问题。 使 阅读全文
posted @ 2017-08-07 20:07 幽默是一种心情 阅读(5205) 评论(0) 推荐(0) 编辑
 
摘要: 一, 1.@using :引入命名空间 2.@model:声明强类型的数据 Model 类型 3.@section:定义要实现母版页的节信息 4.@RenderBody():当创建基于此布局页面的视图时,视图的内容会和布局页面合并,而新创建视图的内容会通过布局页面的@RenderBody()方法呈现 阅读全文
posted @ 2017-08-07 10:21 幽默是一种心情 阅读(1283) 评论(0) 推荐(0) 编辑
 

2017年8月2日

摘要: CSS中有两种阴影效果,一种是DropShadow(投影),另一种是Shadow(阴影).1、DropShadow语法:{FILTER:DropShadow(Color=color,OffX=offX,OffY=offY,Positive=positive)}Color 代表投影的颜色,格式为“#R 阅读全文
posted @ 2017-08-02 09:43 幽默是一种心情 阅读(3635) 评论(0) 推荐(0) 编辑
 
摘要: $('.carousel').carousel({ interval: 3000 }); 阅读全文
posted @ 2017-08-02 09:22 幽默是一种心情 阅读(1675) 评论(0) 推荐(0) 编辑
 
摘要: 原生的 Bootstrap 的 carousel.js 插件并没有支持手势,有下面3种解决方案 : 1. jQuery Mobile (http://jquerymobile.com/download/) 1 2 3 4 5 6 $("#carousel-generic").swipeleft(fu 阅读全文
posted @ 2017-08-02 09:21 幽默是一种心情 阅读(2078) 评论(0) 推荐(0) 编辑
 

2017年8月1日

摘要: C#: JS: 浏览器: 阅读全文
posted @ 2017-08-01 16:33 幽默是一种心情 阅读(642) 评论(0) 推荐(1) 编辑
 
摘要: $("p").hover(function(){ $("p").css("background-color","yellow"); //鼠标放上面背景色改变},function(){ $("p").css("background-color","pink"); //鼠标移走面背景色改变}); 阅读全文
posted @ 2017-08-01 14:32 幽默是一种心情 阅读(427) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页