23 lines
583 B
HTML
23 lines
583 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta http-equiv="Expires" content="0" />
|
|
|
|
<body>
|
|
|
|
<div class="acose" onclick="gotoQuery()">查询</div>
|
|
<script>
|
|
function gotoQuery(){
|
|
alert("aaaaaa")
|
|
var ajx = new XMLHttpRequest();
|
|
|
|
ajx.open('post','http://123.57.248.179:8088/3eapi/http/3e/race/getMy3ERaceCup/v1')
|
|
ajx.send()
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|