我刚开始使用twitter bootstrap。
我想创建一个禁用的表单域。在文档中,我发现了这个片段:
<input type="text" placeholder="Disabled input here..." disabled>
但在 IE9 中,占位符不起作用。当我使用该value
属性设置它的工作内容时(并覆盖在其他浏览器(如 chrome)中工作的占位符文本)。
有一种不使用输入元素的替代方法:
<span class="uneditable-input">Some value here</span>
这也适用于 IE9 和 chrome。哪个解决方案更好(与旧浏览器兼容,如 IE8、7(和 6)?