摘要: 测试1 xiao1 xiao2 阅读全文
posted @ 2017-09-06 15:06 麦田守望 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 在SpringMVC后台控制层获取参数的方式主要有两种,一种是request.getParameter("name"),另外一种是用注解@RequestParam直接获取。这里主要讲这个注解 一、基本使用,获取提交的参数 后端代码: 前端代码: 前端界面: 执行结果: test1 123 可以看到s 阅读全文
posted @ 2017-07-25 16:15 麦田守望 阅读(919) 评论(0) 推荐(0) 编辑
摘要: var iframe = document.getElementById("previewFrame"); if (iframe.attachEvent) { iframe.attachEvent("onload", function() { //以下操作必须在iframe加载完后才可进行 $("#themes").find(".selected").t... 阅读全文
posted @ 2017-07-24 17:40 麦田守望 阅读(298) 评论(0) 推荐(0) 编辑
摘要: declare @day datetime declare @weekA datetime declare @weekB datetime declare @monthA datetime declare @monthB datetime SET @day= CONVERT(varchar(100), GETDATE(), 111) SET @weekA=(select DATEADD... 阅读全文
posted @ 2017-02-15 18:18 麦田守望 阅读(837) 评论(0) 推荐(0) 编辑
摘要: $("#grd").find("tr").each(function () { //第二列单元格的值eq(索引) alert($(this).children('td:eq(1)').text()); }); 阅读全文
posted @ 2017-02-09 14:47 麦田守望 阅读(1911) 评论(0) 推荐(0) 编辑
摘要: jQuery(function () { jQuery.get("AjaxGetData.aspx",{flag:1}, function (_data) { if (_data) { var op = ""; for (var i = 0; i '; ... 阅读全文
posted @ 2017-02-09 14:36 麦田守望 阅读(1742) 评论(0) 推荐(0) 编辑
摘要: 需引用using Microsoft.Office.Interop.Excel; 1 protected Application objExcelApp;//定义Excel Application对象 2 private Workbooks objExcelWorkBooks;//定义Workbook工作簿集合对象 3 protected Workbook objExcelWorkb... 阅读全文
posted @ 2017-01-17 09:58 麦田守望 阅读(4523) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-01-11 15:09 麦田守望 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-12-17 12:32 麦田守望 阅读(10297) 评论(0) 推荐(0) 编辑
摘要: 1,子iframe内调用父类函数方法: window.parent.func(); 2,子Iframe中获取父界面的元素: $("#xx", window.parent.document); 这个xx就是父界面中要获取的元素的ID。 3,jquery 调用子iframe页面中js的方法: iframefunction()是子页面的方法 $(window.paren... 阅读全文
posted @ 2016-12-13 11:22 麦田守望 阅读(589) 评论(0) 推荐(0) 编辑