Files
studycode/nodejs/nodeExperiment4/jsonp.html
2025-12-03 23:08:39 +08:00

19 lines
397 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSONP Test</title>
</head>
<body>
<script>
function handleResponse(data) {
console.log(data);
}
</script>
<script src="http://localhost:3000/api/jsonp?callback=handleResponse"></script>
</body>
</html>