You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
754 B
38 lines
754 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<button id="add">请求发送</button>
|
|
|
|
|
|
<script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
$.ajax({
|
|
url:'http://demo.thinkphp.com/index/hello2',
|
|
type:'post',
|
|
headers:{'token':'Ulp4Xw8NFPFvLAoZeMcxQfd1GyZY3B7J0i3LJCsrtyk'},
|
|
success:function(res){
|
|
console.log(res);
|
|
}
|
|
});
|
|
|
|
$('#add').click(function(){
|
|
|
|
$.ajax({
|
|
url:'http://demo.thinkphp.com/index/test',
|
|
type:'post',
|
|
success:function(res){
|
|
console.log(res);
|
|
}
|
|
});
|
|
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|