<!
DOCTYPE
html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=edge"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
<
script
src
=
"https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"
></
script
>
<
title
>Document</
title
>
</
head
>
<
body
>
<
button
>查询</
button
>
<
script
>
$('button').click(function () {
$.ajax({
type: "GET",
url: "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxcc1fe14e3f&secret=9d8767fe1ecea0",
dataType: "jsonp",
success: function (data) {
console.log(JSON.stringify())
}
});
});
</
script
>
</
body
>
</
html
>