我有两个站点,站点 A 只是 html 和 javascript,站点 B 有 php。我需要的是从站点 A 中的站点 B 获取变量。
前任:
站点A就像
<html>
<head>
<script>
//this script has to get the values from siteB
</script>
</head>
<body>
<div><!-- here i will do something with the data of site B --></div>
</body>
</html>
站点 b 是这样的:
<?php
var1= "something";
var2= "somethingElse";
?>
我在考虑使用 JSON 或 Ajax,但我不明白具体如何。