我对 JQuery 没什么问题。
我正在制作纺车应用程序。当我单击按钮时,该应用程序启动。我想改变这一点,因为我的客户将决定何时开始车轮。
我的大部分配置都存储在数据库中,但我尝试使用单个数字1 = start , 0 stop。
我的应用程序有这个按钮单击并开始:
this.cache.wheelSpinBtn = $('.wheel');
// test
this.cache.wheelSpin = 1; // 1 auto start 0 False
当我按下带有.wheel类的按钮时应用程序启动
this.cache.wheelSpinBtn.on('click', function (e) {
e.preventDefault();
if (!$(this).hasClass('disabled')) _this.spin();
});
但是我想从其他访问者那里删除该按钮,并且此命令是在管理中发出的。正如我在我的配置中所说的那样是基于
我尝试不使用数据库:
if(this.cache.wheelSpin === 1) {
this.spin(); // if is 1 start spinning
}
使用看起来的数据库:
if(this.cache.wheelSpin === <?php echo $obj->getStatus()?> ) {
this.spin(); // if is 1 start spinning
}
在这两种情况下,当我刷新页面时都不起作用。我只想在我刷新页轮开始旋转时。如果值为 1,我的核心知道何时需要停止。
我的应用程序代码有点复杂,我的代码在其中,并且仅在一个 this.cache.wheelSpin 上使用 .ready() 是不可能的...
检查视频。