以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 如何取消点击网页任何页面就刷新 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=178750) |
-- 作者:一笑 -- 发布时间:2022/7/19 10:03:00 -- 如何取消点击网页任何页面就刷新 按照移动开发指南生成网页(嵌入echart),出现点击网页任何位置都会自动刷新页面现象(而其他类似网页都不出现),如何取消此现象,谢谢! |
-- 作者:有点蓝 -- 发布时间:2022/7/19 10:05:00 -- 肯定是绑定了什么js事件。检查一下 |
-- 作者:一笑 -- 发布时间:2022/7/19 11:44:00 -- 逐一排查,去掉网页中TabBar(以下代码),不会出现点击页面就刷新的现象,求解,谢谢! With wb.AddTabBar("", "tb1", 1) .AddPage("page1","统计报告","./images/1.png").Attribute = "" .AddButton("bt3","回主界面","./images/4.png").Attribute = "" End With |
-- 作者:有点蓝 -- 发布时间:2022/7/19 11:50:00 -- 代码不完整!Attribute 后面是什么内容? |
-- 作者:一笑 -- 发布时间:2022/7/19 12:02:00 -- With wb.AddTabBar("", "tb1", 1) .AddPage("page1","统计报告","./images/1.png").Attribute = "" .AddButton("bt1","上报清单","./images/10.png").Attribute = "" .AddButton("bt2","吹哨人","./images/11.png").Attribute = "" .AddButton("bt3","回主界面","./images/4.png").Attribute = "" End With
|