摘要:
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 阅读全文