登录部份代码jQuery(function($) { $('#id-title-text').html(getOption("maintitle")); $('#id-company-text').html(getOption("copyright")); $('#logi...
分类:
其他好文 时间:
2015-10-09 15:07:59
阅读次数:
182
导出Excel贴下面的代码之前,我想说一下我的数据是主外键关系,有多张表关联,所以在做数据的时候,发现很多问题,读取的时候,它会自动读取所有的数据。当然这不能满足我导出之后的要求,我只需要导出我要的字段即可,所以我进行了数据处理。 //导出Excel function exportExcel(...
分类:
其他好文 时间:
2015-10-09 15:06:30
阅读次数:
236
首先,开始是这样实现: $("#checkAll").click(function(){
????????????????
????????????????$(‘[name=checkProductId]:checkbox‘).attr("checked",this.checked);
?????...
分类:
Web程序 时间:
2015-10-09 14:00:43
阅读次数:
133
jsp中导出报表js中function expExcel(){ window.location.href = path+"/action包/action名.action";}其中使用了jQuery-easyui框架导出报表的action
分类:
Web程序 时间:
2015-10-09 13:55:52
阅读次数:
145
一,举例应用 在ACM比赛中常使用 stdlib.h 中自带的 qsort 函数,是教科书式的函数指针应用示范。#include #include int comp(const void*a, const void*b){ return *(int*)a - *(int*)b;}int ma...
分类:
其他好文 时间:
2015-10-09 13:54:16
阅读次数:
166
JQuery:$(document).ready(function(){alert($(window).height()); //浏览器当前窗口可视区域高度alert($(document).height()); //浏览器当前窗口文档的高度alert($(document.body).height...
分类:
其他好文 时间:
2015-10-09 13:35:02
阅读次数:
158
$(document).ready(function () { $(".dept").change(function(){ var deptid = $(t...
分类:
其他好文 时间:
2015-10-09 12:13:35
阅读次数:
238
+ function appendLi(obj){ var newLi=document.createElement('li'); newLi.style.marginTop="10px"; newLi.innerHTML="删除"; ...
分类:
其他好文 时间:
2015-10-09 12:09:20
阅读次数:
105
分享功能:效果图:代码(分享TEXT,视频或者图片设置type即可): 1 @Override 2 protected void onCreate(Bundle savedInstanceState) { 3 super.onCreate(savedInstanceState...
分类:
移动开发 时间:
2015-10-09 12:02:16
阅读次数:
209
__autoload 会在实例化一个未定义类的时候自动将类的名称作为参数,然后加载include文件function __autoload( $class ) { $file = $class . '.class.php'; if ( is_file($file) ) { require...
分类:
其他好文 时间:
2015-10-09 11:48:44
阅读次数:
139