在整个网站中启用/禁用 DHTMLX 日历
我正在开发一个网站(使用 PHP、Mysql、jQuery 构建),该网站要求管理员在配置中设置一个变量,并根据该配置变量对所有网站启用或禁用 jQuery 自动完成功能。有什么办法可以实现该功能。
I am working on website (built using PHP, Mysql, jQuery) which require that admin set a variable in configuration and according to that configuration variable jQuery autocomplete is enabled or disabled to all website. Is there any way to achieve that functionality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是向显示时间表的所有父元素添加一个公共 ID 或其他属性。然后将以下形式的内容包含到您的主 javascript 文件中
如果您希望它来自 php,您始终可以在 php 中加载您的 javascript:
祝您好运!
The easiest way to do it is to add a common id, or other attribute to all the parent elements where the schedule shows up. Then include into your main javascript file something of the form
If you wanted that to come from php, you can always load your javascript within php:
Good luck!
使用这些字段 [name, value,..] 创建一个表设置,并设置名称 calendar_status value hide
在您的视图中,您可以从数据库中读取该字段并设置 myCalendar.hide(true);或 myCalendar.hide(false);
create a table setting with these fields [name, value,..] and set the name calendar_status value hide
in your view you can get read of that field from you DB and set the myCalendar.hide(true); or myCalendar.hide(false);