天天看點

jQuery根據填寫的input的數值導出excel表格

需求:

在輸入框裡面填寫廠區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; 
});           

複制

效果是這樣的