我最近接手的项目中经常让做出打印和导出统计图和表格

首先说打印,打印如果用echarts做出来的图表,打印的时候,要借助jquery的打印插件。

打印插件:

 <script src="../Plugin/jquery-print/jquery.jqprint-0.3.js"></script>

然后进行打印操作

 <div id="printPopup" class="modal-block mfp-hide">
<section class="panel">
<header class="panel-heading">
<h2 class="panel-title">数据打印</h2>
</header>
<div class="panel-body">
<div class="modal-wrapper">
<div class="modal-text">
<div class="form-group">
<label class="col-xs-12 col-md-3 control-label">统计数据:</label>
<div class="col-xs-12 col-md-9">
<select class="form-control mb-md printTableData">
<option value="0">请选择数据表格</option>
<option data-id="" value="1">招商引资项目汇总统计表</option>
<option data-id="" value="2">新签招商引资项目汇总统计表</option>
<option data-id="" value="3">在陕投资合同项目汇总表</option>
<option data-id="" value="4">在陕投资合同项目分类表(按地域)</option>
<option data-id="" value="5">在陕投资合同项目分类表(按行业)</option>
<option data-id="" value="6">招商引资项目明细统计表</option>
</select>
<label for="fullname" class="errorHide"></label>
</div>
</div>
</div>
</div>
</div>
<footer class="panel-footer">
<div class="row">
<div class="col-md-12 text-right">
<button type="button" class="btn btn-default popupCancel">取消</button>
<button type="button" id="printConfirm" class="btn btn-primary"><i class="fa fa-check"></i>确定</button>
</div>
</div>
</footer>
</section>
</div>

打印js:

 //触发打印弹窗
function printDatable() {
$(".pintTable").click(function () {
//打印弹窗初始化
printLizationVal();
//打印初始化事件
printFuntion();
confirmPopup("#printPopup", "inline");
$("#printConfirm").click(function () {
if (tableEven($(".printTableData"), "请选择打印的数据表格")) {
if ($(".printTableData").val() == "1" || $(".printTableData").val() == 1) {
$(".printDtable").show();
$("#Company").show();
$("#navTabes").hide();
$("#headerTable").hide();
$.magnificPopup.close();
html2canvas($("#CompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#CompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "2" || $(".printTableData").val() == 2) {
$("#navTabes").hide();
$(".printDtable").show();
$("#headerTable").hide();
$("#Company").hide();
$("#NCompany").show();
$.magnificPopup.close();
html2canvas($("#NCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#NCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "3" || $(".printTableData").val() == 3) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#SCompany").show();
$.magnificPopup.close();
html2canvas($("#SCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#SCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "4" || $(".printTableData").val() == 4) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#AddSCompany").show();
$.magnificPopup.close();
html2canvas($("#AddSCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#AddSCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "5" || $(".printTableData").val() == 5) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#HYSCompany").show();
$.magnificPopup.close();
html2canvas($("#HYSCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#HYSCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
if ($(".printTableData").val() == "6" || $(".printTableData").val() == 6) {
$(".printDtable").show();
$("#headerTable").hide();
$("#navTabes").hide();
$("#Company").hide();
$("#SureCompany").show();
$.magnificPopup.close();
html2canvas($("#SureCompanyChart"), {
onrendered: function (canvas) {
var domImg = Canvas2Image.saveAsPNG(canvas, true).getAttribute('src');
$("#SureCompanyChart").html("<img src='" + domImg + "'/>");
}
});
}
} else {
tableEven($(".printTableData"), "请选择打印的数据表格");
}
})
}) }
//打印弹窗初始化
function printLizationVal() {
//初始化默认样式
$("#printPopup").find(".has-error").removeClass();
$("#printPopup").find(".error").removeClass().text("");
$(".printTableData").val("0");
}
//打印初始化事件
function printFuntion() {
$(".printTableData").change(function () {
tableEven($(".printTableData"), "请选择打印的数据表格");
})
}
//打印页面上的内容
function preview() {
$(".printBtn").unbind("click").click(function () {
$(".printDtable").hide();
$("#tabContDiv").jqprint();
})
}

导出html:

 <div id="exportPopup" class="modal-block mfp-hide">
<section class="panel">
<header class="panel-heading">
<h2 class="panel-title">数据导出</h2>
</header>
<div class="panel-body">
<div class="modal-wrapper">
<div class="modal-text">
<div class="form-group">
<label class="col-xs-12 col-md-3 control-label">统计数据:</label>
<div class="col-xs-12 col-md-9">
<select class="form-control mb-md exportTableData">
<option value="0">请选择数据表格</option>
<option data-id="" value="1">招商引资项目汇总统计表</option>
</select>
<label for="fullname" class="errorHide"></label>
</div>
</div>
</div>
</div>
</div>

导出js:

 function exportPopupTable() {
//导出1图
$("#exportTable").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup", "inline");
//提交ajax
$(".exportConfirm1").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportSummaryStatistics",
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu1").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu1").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu1").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu1").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu1").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu1").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu1").find(".enterseProperty").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出2图
$("#exportTable2").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup2", "inline");
//提交ajax
$(".exportConfirm2").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportNewlySignedProjectSummaryTable",
//所属产业
"industryTypeFatherId": $.trim($("#tu2").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu2").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu2").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu2").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu2").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu2").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu2").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu2").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu2").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu2").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出3图
$("#exportTable3").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup3", "inline");
//提交ajax
$(".exportConfirm3").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsProvinceTable",
//所属产业
"industryTypeFatherId": $.trim($("#tu3").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu3").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu3").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu3").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu3").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu3").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu3").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu3").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu3").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu3").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出4图
$("#exportTable4").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup4", "inline");
//提交ajax
$(".exportConfirm4").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsClassification",
//所属产业
"industryTypeFatherId": $.trim($("#tu4").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu4").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu4").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu4").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu4").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu4").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu4").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu4").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu4").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu4").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出5图
$("#exportTable5").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup5", "inline");
//提交ajax
$(".exportConfirm5").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProjectsIndustry",
//所属产业
"industryTypeFatherId": $.trim($("#tu5").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu5").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu5").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu5").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu5").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu5").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu5").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu5").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu5").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu5").find(".Projectypes").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
//导出6图
$("#exportTable6").click(function () {
//初始化筛选框
exportLizationVal();
//事件初始化
exportFuntion();
confirmPopup("#exportPopup6", "inline");
//提交ajax
$(".exportConfirm6").click(function () {
if (tableEven($(".exportTableData"), "请选择要导出的数据表格!")) {
$.ajax({
"url": "MasterHandler/MasterProjectImplementSts.ashx",
"data": {
"handleType": "exportInvestmentProject",
//所属产业
"industryTypeFatherId": $.trim($("#tu6").find(".CelebrityIndustryId").val()),
//行业
"industryTypeId": $.trim($("#tu6").find(".CIndustryId").val()),
//开始时间签约时间
"startTime": $.trim($("#datepicker").find(".startTime").val()),
//结束时间签约时间
"endTime": $.trim($("#datepicker").find(".endTime").val()),
//企业类型
"enterpriseTypeId": $.trim($("#tu6").find(".EnterpriseTypeId").val()),
//投资金额
"projectInvested": $.trim($("#tu6").find("registeredAssetsHeader").val()),
//累计金额
"projectScheduleFundsPlace": $.trim($("#tu6").find(".registeredAssets").val()),
//投资来源地
"cityId": $.trim($("#tu6").find(".cityDataHeader").val()),
//招商引资活动
"projectActivitiesId": $.trim($("#tu6").find(".SelectProjectActivitiesId").val()),
//项目主管部门
"UserDeparmentList": $.trim($("#tu6").find(".SalesDepartment").val()),
//投资企业性质
"enterpriseNatureIdd": $.trim($("#tu6").find(".enterseProperty").val()),
//项目类型
"isNotProvince": $.trim($("#tu6").find(".Projectypes").val()),
//签约类型
"projectContractType": $.trim($("#tu6").find(".ServiceMark").val()),
//签约状态
"projectContractState": $.trim($("#tu6").find(".Contractstatus").val()),
//形象进度
"projectScheduleImage": $.trim($("#tu6").find(".Imageprogress").val()),
},
"type": "post",
"cache": false,
"async": false,
"dataType": "json",
"success": function (data) {
if (data.msg == 1 || data == "1") {
confirmPopupClose();
new PNotify({
title: '系统温馨提示',
text: '导出成功!',
type: 'success'
});
window.location.href = "/fileUpload/files/xls/Project/" + data.msgbox;
} else {
new PNotify({
title: '系统温馨提示',
text: data.msgbox,
type: 'error'
});
} },
"error": function () {
new PNotify({
title: '系统温馨提示',
text: '系统异常,请稍后重试。',
});
}
});
} else {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
}
})
});
}
 //导出弹窗初始化
function exportLizationVal() {
//初始化默认样式
$("#exportPopup").find(".has-error").removeClass();
$("#exportPopup").find(".error").removeClass().text("");
$(".exportTableData").val("0");
}
//导出初始化事件
function exportFuntion() {
$(".exportTableData").change(function () {
tableEven($(".exportTableData"), "请选择要导出的数据表格!");
})
}

运用jquery做打印和导出操作的更多相关文章

  1. 个人永久性免费-Excel催化剂功能第50波-批量打印、导出PDF、双面打印功能

    在倡导无纸化办公的今天,是否打印是一个碍眼的功能呢,某些时候的确是,但对于数据的留存,在现在鼓吹区块链技术的今天,仍然不失它的核心价值,数据报表.单据打印出来留存,仍然是一种不可或缺的数据存档和防篡改 ...

  2. Jquery网页元素里面的操作以及JSON

    如果网页里面有复选框,下拉列表Jquery怎么来操作,主要是怎么选取数据,就是取选中值,第二个是设置哪一项选中 <script src="jquery-1.11.2.min.js&qu ...

  3. JavaScript jQuery 中定义数组与操作及jquery数组操作

    首先给大家介绍javascript jquery中定义数组与操作的相关知识,具体内容如下所示: 1.认识数组 数组就是某类数据的集合,数据类型可以是整型.字符串.甚至是对象Javascript不支持多 ...

  4. 在PHP中如何实现在做了么个操作后返回到指定页面

    我们经常会碰到类似用户在没有登录的情况下进行提问.评论,需要用户登录后返回刚才浏览的网页,这种功能用cookie保存当前url地址来实现.我用的是jquery,读者需要懂点jquery中的ajax请求 ...

  5. 用Jquery做一个时间日期选择器

    今天我们就用Jquery做一个时间日期选择器,当打开网页时,文本框里面显示的是当前的日期,点击文本框可以出现年.月.日的下拉菜单,并且可以选择,会根据年份的选择判断是否是闰年,从而改变二月的天数,闰年 ...

  6. jQuery 选择器 筛选器 样式操作 文本操作 属性操作 文档处理 事件 动画效果 插件 each、data、Ajax

    jQuery jQuery介绍 1.jQuery是一个轻量级的.兼容多浏览器的JavaScript库. 2.jQuery使用户能够更方便地处理HTML Document.Events.实现动画效果.方 ...

  7. VB中Excel 2010的导入导出操作

    VB中Excel 2010的导入导出操作 编写人:左丘文 2015-4-11 近来这已是第二篇在讨论VB的相关问题,今天在这里,我想与大家一起分享一下在VB中如何从Excel中导入数据和导出数据到Ex ...

  8. JavaScript jQuery 中定义数组与操作及jquery数组操作 http://www.jb51.net/article/76601.htm

    首先给大家介绍javascript jquery中定义数组与操作的相关知识,具体内容如下所示: 1.认识数组 数组就是某类数据的集合,数据类型可以是整型.字符串.甚至是对象Javascript不支持多 ...

  9. jquery css事件编程 位置 操作

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

随机推荐

  1. 使用Java代码发送SMTP邮件

    package cn.Douzi.send; import javax.mail.Session; import javax.mail.Transport; import javax.mail.int ...

  2. ubuntu11下安装文件

    1.ubuntu11下安装.run文件 首先右键单击这个文件,在properties-permissions那里选择允许以程序执行(打钩Allow executing file as program) ...

  3. 不修改代码优化 ASP.NET 网站性能的一些方法

    本文将介绍一些方法用于优化ASP.NET网站性能,这些方法都是不需要修改程序代码的.它们主要分为二个方面:1. 利用ASP.NET自身的扩展性进行优化.2. 优化IIS设置. 配置OutputCach ...

  4. ASP.NET Session详解笔记

    (一) 描述 当用户在 Web 应用程序中导航 ASP.NET 页时,ASP.NET 会话状态使您能够存储和检索用户的值.HTTP 是一种无状态协议.这意味着 Web 服务器会将针对页面的每个 HTT ...

  5. 【洛谷 P2604】 [ZJOI2010]网络扩容(最大流,费用流)

    题目链接 第一问就是简单的最大流. 第二问,保留第一问求完最大流的残量网络. 然后新建一个源点,向原源点连一条流量为k,费用为0的边. 然后所有边重新连一起(原来的边保留),费用为题目所给,最小费用即 ...

  6. 面试整理(1):原生ajax

    接到电话面试,有一些送分题答的不好,在这里整理一下 问题:原生ajax的工作流程是怎么样的? 老用封装好的工具,原生的ajax其实并不熟悉,今天复习一下.主要参考http://www.w3school ...

  7. 简易版jquery

    最近写了一个简易版的jquery   github地址:https://github.com/jiangzhenfei/Easy-Jquery 完成的方法: 1.$('#id') 2.extend扩展 ...

  8. 使用Burpsuite爆破弱口令教工号

    使用Burpsuite爆破弱口令教工号 发表于 2015-11-18   |   分类于 Burpsuite  |   1条评论  |   26次阅读 准备 所谓工欲善其事,必先利其器,首先当然是要下 ...

  9. document.write 简介

    document.write 的执行分两种情况: 第一种:dom加载已完成 1. 执行 document.open() (即会清空document) 2. 执行 document.write() 3. ...

  10. defer用途

    package main /* defer :程序退出时执行,先进后执行 defer庸碌: 1.关闭文件句柄 2.锁资源释放 3.数据库连接释放 */ import ( "fmt" ...