我有从 php 发送的数组,我通过 JSON 发送到 javascript 文件。它使用 jquery.GET 工作,但我只想使用 javascript。我知道有办法,但我找不到它,我敢打赌有一个人知道答案。
这是我的 jquery 代码:
$.get('loadSomething.php', function(data) {
var dataSomething = data.something;
// Then working with the data I received from PHP file
}
我想要同样的东西,但只使用 javascript。