.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: none; border-color: transparent; } .btn: ...
分类:
其他好文 时间:
2017-07-07 11:43:50
阅读次数:
152
[1]基础列表组 [2]徽章 [3]链接 [4]按钮 [5]定制内容 [6]状态设置 [7]多彩列表组 ...
分类:
其他好文 时间:
2017-07-06 00:26:22
阅读次数:
182
https://docs.microsoft.com/en-us/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create_the_data_access_layer This ...
分类:
数据库 时间:
2017-07-05 19:58:44
阅读次数:
279
<div class="btn-group" data-toggle="buttons"> <label class="btn btn-primary"> <input type="radio" name="options" id="option1"> 选项 1 </label> <label cl ...
分类:
Web程序 时间:
2017-07-05 00:32:47
阅读次数:
156
转http://blog.csdn.net/odeviloo/article/details/51025387 在使用jetty测试我的项目的时候遇到如下的情况 这是由于没有源码造成的 指定workspace 项目右键 Debug As->Debug Configurations 指定workspa ...
分类:
其他好文 时间:
2017-07-04 20:21:22
阅读次数:
138
本例旨在说明我的一种Controller接收ajax提交(POST)过来的json对象或数组信息的方式,感觉应该有更好的方式,欢迎提出宝贵意见。JSON.stringify(jsonObj)不支持IE8以下浏览器 前端页面代码如下: Controller->Action代码如下(需引用System. ...
分类:
编程语言 时间:
2017-07-04 18:24:35
阅读次数:
304
今天我们来讲如何判断这个java中字符串输入是否为空 当只有一个input的时候,我们来进行个判断这个值是否为空 当有多个input的时候,我们来判断这个一系列的值是否为空 ...
分类:
编程语言 时间:
2017-07-04 00:02:26
阅读次数:
248
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title></head><body><button id="btn">改变</button><script src="js/jquery.js"></scri ...
分类:
其他好文 时间:
2017-07-03 12:27:52
阅读次数:
141
$(".div").click(function(){ var that = this; // console.log(that.innerText); layer.open({ title: [ '房间信息', ' color:#fff;margin:0;' ] ,anim: 'up' // ,s ...
分类:
其他好文 时间:
2017-07-03 10:09:11
阅读次数:
128
Pow(x, n) Total Accepted: 25273 Total Submissions: 97470My Submissions Implement pow(x, n). 题意:求x的n次幂 思路:二分法 n有可能是负的或正的 当n为负是,pow(x, n) = 1/pow(x, -n) ...
分类:
其他好文 时间:
2017-07-03 10:06:30
阅读次数:
180