<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>get</title>
</head>
<body>
<input type="text" name="">
<input type="button" name="" value="查询">
<script type="text/javascript" src="../jquery-3.2.1.js"></script>
<script type="text/javascript">
$(function() {
$("input").eq(1).click(() => {
// $.ajax({
// url: `http://121.196.8.145:10000/test/getfundAll?pageNum=${$("input").eq(0).val()}`,
// type: 'GET',
// // contentType: '',
// // data: {
// // pageNum: $("input").eq(0).val()
// // },
// success: function(res) {
// console.log(res)
// }
// })
// $.get(url, data, callback)
// $.get(`http://121.196.8.145:10000/test/getfundAll?pageNum=${$("input").eq(0).val()}`, function(res) {
// console.log(res)
// })
$.get(
`http://121.196.8.145:10000/test/getfundAll`,
{
pageNum: $("input").eq(0).val()
},
function(res) {
console.log(res)
})
})
})
</script>
</body>
</html>