作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的第一篇文章,我会尽量简单一点:我需要创建一个表格,供医学 session 的参与者注册类(class),每节课持续 3 小时,因此想要从上午 10 点开始类的人无法注册上午 11 点、中午 12 点和下午 1 点的类(class),但他可以注册到下午 2 点,依此类推。
每小时有 3 节不同的类(class)。
我想用 javascript 来做这件事,但我完全迷失了。
您能给我一个关于如何执行此操作的提示吗?
谢谢!!
最佳答案
执行此操作的快速且简单的方法是设置一个 JavaScript 函数来运行 onChange,以禁用或启用其他复选框。你会做类似的事情
<input type="checkbox" onChange="enableDisable(11)" name="11" id="whatever">
你的 JavaScript 的伪代码是:
//Declare function
//Check the current id and get the next 3 IDs
//Check the status of the currentid to find out if you checked or unchecked it
//if you checked it, disable the next 3 ids
//if you unchecked it, enable the next 3, dependant on whether any of the previous 3 values are checked
最后一步会有点痛苦,但这是我解决这个问题的基础
关于php - 关于根据另一组禁用一组复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7655506/
我是一名优秀的程序员,十分优秀!