我如何在 javascript 中创建一个变量并从 json 数组中给它一个值?
该数组是从 php 脚本发送的,如下所示:
php
$stat = array("v1" => "$v1", "v2" => "$v2", "v3" => "$v3",
"v4" => "$v4", "v5" => "$v5", "pump" => "$pump", "flow" => "$flow");
echo json_encode(($stat));
html/javascript
$.ajaxSetup({ cache: false });
setInterval(function(){
$.getJSON('statusdata.php',function(data) {
$.each(data, function(key, val) {
// I try to do something like this..
var v1 = key[1];
var v2 = key[2];
and so on..
然后我想使用一个变量来提醒一个带有某种警告的弹出窗口。
有点像:
if (v1 == 1){
run the popup function!
}
谁能帮我?