<?php
if(strstr(file_get_contents('http://api.alphenweer.nl/api.php?apikey=Hier uw api sleutel&server=servercheck'), '1')){
echo 'AlphenWeer.nl Api server is online en werkend.';
}
else
{
echo 'AlphenWeer.nl Api server if offline of niet werkend, of uw API code klopt niet.';
}
?>
我如何使用javascript和/或jQuery执行此操作? 我只知道AJAX部分,但然后检查数据中是否有1个......怎么样?
答案 0 :(得分:2)
您可以使用the Mozilla article中描述的indexOf
方法。
if (str.indexOf('1')>-1) {
// found
}
else
{
// not found
}
其中str
包含AJAX部分返回的字符串。