我有一个 JS 文件,它进入我的数据库并返回值,唯一可以存在的值是 0 和 1。
在此之后,我转到一个 PHP 文件,我调用了这个值,但是我想创建一个 if 条件循环来分析这个 div 的值,以便根据该值显示图像。例如:
if (<div id="last_relay1"></div> = 0) then display IMAGE A
else
if (<div id="last_relay1"></div> = 1) then display IMAGE B
我的难点是将 的值用作 PHP 变量。
//Script to load the value of the current relay
$(document).ready(function(){
setInterval(function(){
$("#last_relay1").load('last_update.php #RELAY1_STATUS_last_update')
}, 1000);
});
//little code to display the value of LAST_RELAY1 for database.
//the values returned possibles are 0 and 1
<div id="last_relay1"></div>
狐的传说
哆啦的时光机
潇湘沐