每秒重复一次JavaScript函数

时间:2019-06-29 15:51:00

标签: javascript jquery

我有两个文件, fun sendMessage(messageformat : String){ val smsManager = SmsManager.getDefault() smsManager.sendTextMessage("smsgatewaynumber","srcnumber",messageformat, null, null) } index.php。我的table.php包含在div的table.php文件中。为此,我这样做是:

index.php

我的$("#tableloader").load('table.php') 每秒钟更改一次。为了在我尝试过的table.php文件中反映出它的变化,

index.php

但是它只一次加载table.php,而不是每秒...

2 个答案:

答案 0 :(得分:4)

您正在使用setTimeout(),它只是在指定时间启动功能。 使用setInterval可获得理想的结果。

Qproduct_innovation_level innovationLevel = selectFrom(product_innovation_level).
                                  where(product_innovation_level.id.eq(1)).
                                  firstResult(product_innovation_level);
int i  = innovationLevel.level_customer.intValue();
Error: Type mismatch: cannot convert from NumberExpression<Integer> to int

答案 1 :(得分:1)

您正在使用 setTimeout-在一定时间后调用一个函数。因此,它将在1秒后调用您的函数一次。

您需要使用:

setInterval-每隔1秒钟就会调用一次函数。

请看看here