禁用字段集时启用html按钮

r1wp621o  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(226)

我有一个字段集标记,如果存在某个特定url变量,我会将该属性设置为禁用:

<fieldset class="fieldsetGeneralSettings" <cfif #url.read_only# eq 'yes'>disabled="disabled"</cfif> >
</fieldset>

当我将该属性设置为disabled时,字段集的所有元素都被禁用,但是我想强制启用该字段集中的html按钮。我试图使用下面的javascript强制执行它,但它似乎没有任何作用。

<button id="followup_detail_button" class="TicketButton" onclick="followupButtonDetailsClick(event);"><i class="far fa-calendar-alt"> </i> <font color="red">Follow-up Request</font></button>

<button id="followup_button" class="TicketButton" onclick="followupButtonClick(event);"><i class="far fa-calendar-alt"> </i> Follow-up Request</button>

<script>
    $(document).ready(function () {
        console.log("Trying to enable the button");
        $("##followup_detail_button").removeAttr('disabled');
        $("##followup_button").removeAttr('disabled');
    })
</script>

我做错了什么?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题