jQuery根据填写的input的数值导出excel表格

December 17, 2023
测试
测试
测试
测试
2 分钟阅读

需求: 在输入框里面填写厂区ID或者填写建筑物ID之后 点击导出报表的按钮 会将input输入框里面填写的数据作为参数 调用导出接口的时候传给后端

html

<input type="text" id="placeId" class="form-control"    placeholder="厂区ID"> 
<input type="text" id="buildingId" class="form-control"  placeholder="建筑物ID"> 
<button class="btn btn-blue" id="export" type="button">导出报表</button>    

js:

// 导出报表
$('#export').click(function() {
var placeId = $("#placeId").val();
var buildingId = $("#buildingId").val();
window.location.href = basePath + "/beacon/export.action?placeId="+placeId+"&buildingId="+buildingId; 
});

效果是这样的

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多