输入只读属性是否仅适用于文本和文本区域?

Does input readonly attribute works for text and textarea only?

输入只读属性是否适用于 text/textarea? 如果是,为什么它不适用于 select?

它适用于 input[type="text"]textarea

它不适用于 select,但如果你想阻止用户选择选项,我建议在每个选项上使用 disabled 属性。