是否可以禁用没有ID的输入[type = image]?

时间:2014-01-27 23:44:45

标签: javascript jquery

我正在尝试禁用图片类型的表单输入,但它没有ID。

有可能吗?

2 个答案:

答案 0 :(得分:4)

$('input[type=image]').prop("disabled",true)

DEMO

或者只是喜欢:

$(':image').prop("disabled",true)

DEMO 2

如果您需要禁用仅限具有NO id的图像输入

$(':image:not([id])').prop("disabled",true)

DEMO

答案 1 :(得分:2)

如果您要禁用所有类型为image具有id属性的输入,您可以执行以下操作:

$('input[type="image"]').not('[id]').prop('disabled', true);

否则,您必须弄清楚如何识别您正在寻找的特定字段。