我有一个包含“禁用”属性的文本输入。我想在点击按钮时删除禁用的属性,但它不起作用。怎么了?即使我在删除属性之前尝试启用字段但没有成功。
<input type="button" value="Click Me" onclick="ABC()" />
function ABC()
{
//$("#txtTest").Prop("disabled",false);
$("#txtTest").removeAttr("title");
//$("#txtTest").prop("disabled",true);
}
答案 0 :(得分:3)
应该是
$("#txtTest").prop("disabled",false);
不是
$("#txtTest").Prop("disabled",false);
<强>更新强>
// Remove title from all disabled elements
$('input:disabled').attr('title', '');
或仅来自一个元素
$('#txtTest').attr('title', '');