如何获取文本字段禁用属性

时间:2014-09-30 13:36:53

标签: jquery

我有一个div,如下所示。如何知道位置ID是否被禁用??

<div class="stTime fields">
    <input id="location" type="text" placeholder="Label (Example Office , Home) " disabled="">
</div>

我试过这种方式

var prop = $("#location").prop();

但是我在控制台

中收到了未捕获的TypeError:Cannot read property 'nodeType' of undefined

2 个答案:

答案 0 :(得分:2)

jsFiddle Demo

var prop = $("#location").prop("disabled");
alert(prop)

答案 1 :(得分:-1)

如果您使用的是旧版本的jQuery

  var prop = $("#location").attr('disabled');

jQuery 1.6起,.prop()已被引入

  var prop = $("#location").prop('disabled');