$(function() {
$('#download').click(
function() {
alert("hello")
var region = getParam("region");
var hlmc = getParam("hlmc");
var hljb = getParam("hljb");
var jlxs = getParam("jlxs");
var hyXS = getParam("hyXS");
var hkXS = getParam("hkXS");
var url = context + "/service/sqsd/river/download";
window.location.href=url+"?region="+region+"&hlmc="+hlmc+"&hljb="+hljb+"&jlxs="+jlxs+"&hyXS="+hyXS+"&hkXS="+hkXS
$.ajax({
type : "get",
url : url,
data : param ,
dataType : "json",
success : function(data) {
alert("哈哈")
}
});
});
});