这段PHP代码用Javascript / jQ ......怎么样?

时间:2011-05-13 23:25:45

标签: php javascript jquery ajax

<?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个......怎么样?

1 个答案:

答案 0 :(得分:2)

您可以使用the Mozilla article中描述的indexOf方法。

if (str.indexOf('1')>-1) {
    // found
}
else 
{
    // not found
}

其中str包含AJAX部分返回的字符串。