摘要:
原文链接: https://blog.csdn.net/lizaijinsheng/article/details/127321758 说明: 如果是用https的话,由于没有证书,会报错:基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系; 错误信息 : 1、基础连接已经关闭: 未能 阅读全文
摘要:
string sel_JD = "电冰箱,电热水壶,客厅空调,饮水机,"; string Operation_JD = "电冰箱,电热水壶,电动汽车,"; List<string> select_operation = new List<string>(); string[] sel_arr = s 阅读全文
摘要:
WITH CTE AS( SELECT top 5 TaskID ,Attachments from [V_AllAccessoriesAompression])SELECT a.TaskID,c.Attachments FROM (SELECT TaskID,CONVERT(XML,'<R><V> 阅读全文
摘要:
function GetRequest(urlStr) {//两种方式,输入链接获取或当前链接获取 if (typeof urlStr == "undefined") { var url = decodeURI(location.search); //获取url中"?"符后的字符串 } else { 阅读全文
摘要:
btnDel.setAttribute('type', 'button'); //type="button" btnDel.setAttribute('value', '删除'); btnDel.setAttribute("class", "layui-btn layui-btn-xs layui- 阅读全文
摘要:
<table width="600" border="1" cellspacing="0"> <thead> <tr> <th>编号</th> <th>姓名</th> <th>职位</th> <th>操作</th> </tr> </thead> <tbody id="tbMain"></tbody> 阅读全文
摘要:
$.ajax({ method: 'post', //数据类型 url: 'service.ashx?method=PostFile', //传输页面和页面方法 dataType: "json", //传输格式 traditional: true, //是否可传输数组 data: { datafil 阅读全文
摘要:
循环下载的时候不可以用window open ,因为window open 只能打开一次网址,不能多次打开 所以我们采用iframe的方式 var count = 0; var downloadURL = function downloadURL(url) { var hiddenIFrameID 阅读全文