我有一个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
答案 0 :(得分:2)
var prop = $("#location").prop("disabled");
alert(prop)
答案 1 :(得分:-1)
如果您使用的是旧版本的jQuery
var prop = $("#location").attr('disabled');
自jQuery 1.6
起,.prop()
已被引入
var prop = $("#location").prop('disabled');