假期或休假日历
我想在线性日历上显示假期和休息时间,其中月份的天数是列名称,行是员工姓名。 我知道有一种方法可以使用 php 和 javascript 来实现此目的,但我想知道是否有一个快捷的解决方案可以用来更快地实现此目的。
I would like to display vacation and time offs on a linear calendar where the days of the months are the column names and rows are the employee names.
I know there is a way to achieve this using php and javascript but I would like to know if there is a shortcut solution that I can use to implement this quicker.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 javascript 输出
,使用类似 SortTable 或一个 javascript 框架来输出它。
在表格的点击事件上连接一些javascript,并使用AJAX向PHP询问相关信息。 PHP 脚本可以调用数据库并以 JSON 等格式输出信息。
如果您的问题没有更多细节,我认为您不会得到更多帮助。
Use javascript to output a
<table>
, using something like SortTable or a javascript framework to output it.Hook up some javascript on the table's click events, and use AJAX to ask PHP for the relevant information. The PHP script can call the database and output the information in something such as JSON.
Without any more specifics in your question I don't think you're going to get much more help.