//给Checkbox提供全选功能$("#checkall").click(function(){ if(this.checked){ $("input[name='checkname[]']").each(function(){ this.checked...
分类:
Web程序 时间:
2014-07-03 11:16:45
阅读次数:
216
Pending Queue Size The number of messages in the queue that have yet to bedelivered to any clientDispatched Counter The number of message in the q...
分类:
其他好文 时间:
2014-07-01 00:23:41
阅读次数:
268
$(function () { $("#checkAll").click(function () { $('input[name="infoids[]"]').attr("checked", this.checked); }); var $subBox = $("input[name='infoi....
分类:
其他好文 时间:
2014-06-30 21:37:56
阅读次数:
298
/*获得text的值*/
var textval =$("#text_id").attr("value");
//或者
var textval =$("#text_id").val();
/*获取单选按钮的值*/
var valraio =$("input[type=raio]:checked").val();
/*获取一组名为items的radio被选中项的值*/
var ...
分类:
Web程序 时间:
2014-06-30 20:13:35
阅读次数:
298
在页面上单选按钮的代码:
checked value="${key}" name="record.is_com"/>${value}
获取单选按钮选中的值,并给指定的单选按钮赋值:
if($('input[name="record.is_com"]:che...
分类:
Web程序 时间:
2014-06-30 06:00:54
阅读次数:
205
Add include to "freetype.h"/* add this line */#include #ifndef FT_FREETYPE_H#error "`ft2build.h' hasn't been included yet!"#error "Please always use m...
分类:
其他好文 时间:
2014-06-29 20:24:58
阅读次数:
312
Almost one year ago, I checked how different cache settings affected KVM storage subsystem performance. Results were very clear: to obtain good I/O sp...
分类:
系统相关 时间:
2014-06-29 19:47:59
阅读次数:
448
Spring业务的传达行动在service类前加上@Transactional,声明这个service一切办法需求业务管理。每一个业务办法开始时都会翻开一个业务。Spring默许情况下会对运行期破例(RunTimeException)进行业务回滚。这个破例是unchecked假如遇到checked意...
分类:
编程语言 时间:
2014-06-27 15:55:09
阅读次数:
179
MVC里自己建立数据库访问,出现数据库错误:Model compatibility cannot be checked because the database does not containmodel metadata. Model compatibility can only be check...
分类:
数据库 时间:
2014-06-27 14:52:21
阅读次数:
236
Spring业务的传达行动在service类前加上@Transactional,声明这个service一切办法需求业务管理。每一个业务办法开始时都会翻开一个业务。Spring默许情况下会对运行期破例(RunTimeException)进行业务回滚。这个破例是unchecked假如遇到checked意外就不回滚。如何改动默许规矩:1..
分类:
编程语言 时间:
2014-06-27 06:44:59
阅读次数:
207