- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Cancel Deleting Req-6ren">
<?php
$time=time();
$time_out=$time-60*24;
if($userInfo['deleteTime'] < $time_out){
?>
<td><small class="showExpire">Timeout..You Cannot Reverse the Deleted Request</small></td>
<?php } else { ?>
<td><a href="#" rel="<?php echo $userInfo['reqID']; ?>" class="cancelDelete"><small>Cancel Deleting Request</small></a></td>
<?php }?>
这是静态脚本,希望与我的代码兼容
<script language="JavaScript">
TargetDate = "12/27/2017 10:56 PM";
BackColor = "palegreen";
ForeColor = "navy";
CountActive = true;
CountStepper = -1;
LeadingZero = true;
DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds.";
FinishMessage = "It is finally here!";
</script>
当用户删除某些内容时我给了他 24 小时的时间来撤销删除,在 24 小时完成之前,我显示了取消删除按钮,如果从他删除后 24 小时完成,那么他将无法撤销删除,并显示超时消息。但现在我无法为该用户设置 24 小时倒计时,当他删除时,他应该知道他留下了 x 时间来撤销他的删除我如何使用倒计时这个逻辑
最佳答案
您可以使用 jquery、ajax 和 php 来实现此目的
<script>
setInterval(countDownTimer, 1000); // call your function at regular interval of time
function countDownTimer()
{
$.ajax({
url : 'your php file path',
method : 'get',
success : function(response)
{
if(response.errCode == 0)
{
$('your table id').append("<td><small class="showExpire">Timeout..You Cannot Reverse the Deleted Request</small></td>")
} else
{
$('your table id').append("<td><a href="#" rel=response.reqId class="cancelDelete"><small>Cancel Deleting Request</small></a></td>");
}
},
})
}
</script>
// in php file
<?php
$time=time();
$time_out=$time-60*24;
if($userInfo['deleteTime'] < $time_out){
return response()->json(['reqId'=>'your id']);
} else {
return response()->json(['errCode'=>0]);
}
关于javascript - 如何使用 PHP 或 Jquery For Stored Time 创建倒计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41355431/
我想在 android 中扫描黑底白字条码。我使用过 zxing,它允许我只扫描白底黑字。我如何扫描和倒置条形码或使用哪个库?感谢您的帮助。 最佳答案 如果您仍在引用 journeyapps 嵌入式
所以我在 youtube 上观看了一些介绍性类(class)以学习 OpenGL 的基础知识并学习了诸如制作三角形和简单相机类等内容。我一直想尝试制作体素引擎,这显然是第一个我想做的是一个我最终可以复
这个问题在这里已经有了答案: Div with cut out edges, border and transparent background (6 个答案) 关闭 8 年前。
我有一张图片,我正在查看用 HTML 创建的小型网站的基本定制。 我知道您可以对图像进行倒 Angular 处理,如 this question here 中所示,这给出了 45 度切割。 我希望每个
我必须在 iOS 上创建一个自定义形状(倒 T)边框的 Uiview。我附上下面的截图。我进行了很多研究,找到了一种使用 here 中的 UIBezierPath 的方法. 但我不知道如何将我的 Vi
我是一名优秀的程序员,十分优秀!