我对JQuery没什么问题。
正在制作纺车应用。当我点击按钮时,该应用程序启动。 我想改变这一点,因为我的客户将确定何时启动车轮。
我的大部分配置存储在数据库中,但我尝试使用单个数字 1 =开始, 0停止。
我的应用有按钮点击并启动:
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,我的核心知道何时需要停止。
我的applucation代码很少编译,我的代码已经存在并且只能在一个this.cache.wheelSpin上使用.ready()...
查看视频。