如何在链接按钮上启用文本框点击,我正在禁用html中的文本框
这是我正在尝试使用的jquery代码:
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$('#lEdit').click(function () {
$('#CorporationName').removeAttr('disabled');
});
});
</script>
<asp:LinkButton ID="lEdit" runat="server" ClientIDMode="Static" >Edit</asp:LinkButton>
<asp:Label ID="lblCorporationName" runat="server" Text="Corporation Name" Width="130px"></asp:Label>
<asp:TextBox ID="CorporationName" runat="server" Width="250px" ClientIDMode="Static" Enabled="false"></asp:TextBox>
答案 0 :(得分:5)
看起来你做得对。如果这不起作用,请尝试:
$('#CorporationName').prop('disabled', false);
答案 1 :(得分:1)
虽然将属性设置为false或甚至为null可能有效,但您可能需要尝试jQuery's removeProp()
function。它旨在做到这一点。
描述:删除匹配元素集的属性。
$('#CorporationName').removeProp('disabled');
请注意,一旦以这种方式删除了该属性,您将无法再次禁用该文本框。