我也是使用和html编程的arduino以太网的入门者。 当int(整数值)发生变化时,我会刷新以太网页面。 我知道autorefresh元。我在60秒内刷新我的网页。我需要60秒,因为我使用了一些输入类型,如果我想填充它们,我需要60秒。 我使用buttoms,select和chechbox输入,buttoms和其他输入也刷新页面。 但是现在,如果整数发生变化,我立即需要刷新页面,而不需要使用buttoms,输入字段或链接。 我怎么能意识到这一点? 我想我必须使用这样的脚本:
if(x == 1) { //x is the integer
client.println("<myFunction()>");
client.println("<script>");
client.println("function myFunction() {");
client.println(" location.reload();"); //location.reload(true/false); If false, the page will be reloaded from
client.println("}"); //cache, else from the server.
client.println("</script>");
x== 0;
}
但是
client.println("<myFunction()>");
行不好,我在网上找不到解决方案。
或者html: 我有一个变量x,问题是如何启动myFunction脚本,如果x = 1?
<script>
function myFunction() {
location.reload();
}
</script>
请帮帮我! 非常感谢!