in JQuery Mobile how do I check if select menu (html select) is disabled or not?
问问题
487 次
2 回答
1
与常规选择相同的方式,这种方式:
$('#yourselect').is('[disabled]') //returns true or false
于 2012-12-10T19:25:54.473 回答
1
只需使用.prop()来检查 disabled 属性
$('yourselect').prop('disabled') // <-- will return true or false
于 2012-12-10T19:26:05.393 回答