如何用js控制当点击缺席时?当前行的按钮禁用,和批量缺席时,选中的行按钮禁用

和点击复选框,批量缺席时,选中的行按钮禁用... 和点击复选框,批量缺席时,选中的行按钮禁用 展开
 我来答
全国流窜
2015-10-12 · TA获得超过403个赞
知道小有建树答主
回答量:417
采纳率:50%
帮助的人:168万
展开全部
<script src="/jquery.js"></script>
<script>
$(function(){
    $(".s input[type='checkbox']").each(function(){
        $(this).click(function(){
            if(!this.checked){
                $("input[type='button']", $(this).parent().parent()).removeAttr("disabled", "disabled");
            }else{
                $("input[type='button']", $(this).parent().parent()).attr("disabled", "disabled").prop("disabled", "disabled");
            }
        });
    });
});
</script>
<table class="s">
<tr>
    <td><input type="checkbox" /></td>
    <td><input type="button" value="test1" /> <input type="button" value="test2" /></td>
</tr>
<tr>
    <td><input type="checkbox" /></td>
    <td><input type="button" value="test1" /> <input type="button" value="test2" /></td>
</tr>
<tr>
    <td><input type="checkbox" /></td>
    <td><input type="button" value="test1" /> <input type="button" value="test2" /></td>
</tr>
</table>

 当点击缺席时,去查找同一位置的checkbox 即可,模拟点击checkbox即可。或直接提交后台,刷新页面时,由后台决定此行禁用。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式