本帖最后由 David.Zhong 于 2022-11-11 11:01 编辑
当前版本可直接使用显示当前时间插件。
显示当前时间 - 葡萄城市场 (grapecity.com.cn)
------------------------------过期方案---------------------------------------------
首先,将这个附件解压
然后,将解压好的文件,插入到活字格的服务器API上
然后,添加下列代码
如果是动态一直显示的话,需要在页面加载时添加,加入如下代码:
- setInterval(refresh,200);
- function refresh(){
- $.post(Forguncy.ForguncyData.ForguncyRoot + "customapi/getcurrentdate/getdate", null, function (result) {
- Forguncy.Page.getCell("datetime").setValue(result);
- })
- }
复制代码 如果只是在,点击按钮以后显示的话,将下列代码,填入我们那个按钮中:
- $.post(Forguncy.ForguncyData.ForguncyRoot + "customapi/getcurrentdate/getdate", null, function (result) {
- Forguncy.Page.getCell("datetime1").setValue(result);
- })
复制代码
我们只需要保证代码中的,这个名称和页面的单元格的名称一致,代码就会把服务器的时间,设置到你的,那个单元格:’
就可以啦
效果请您参看,附件中的工程
|