You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
396 B
HTML
10 lines
396 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
<div id="result"></div>
|
|
<script>
|
|
let url = "https://en.wikipedia.org/w/api.php?action=compare&format=json&fromtitle=Han%20Kang&fromrev=376586279&totitle=Han%20Kang&torelative=next&formatversion=2&origin=*";
|
|
fetch(url).then(resp => resp.json()).then(data => console.log("data", data));
|
|
</script>
|
|
</body>
|
|
</html> |