使用Internet Explorer 10和11时,如果使用autofocus
属性聚焦输入,则会删除输入占位符文本。例如:
<input type="textbox" value="" placeholder="Example text" autofocus>
演示: https://jsfiddle.net/ompkwtz5/
如何确保不删除占位符文本?
答案 0 :(得分:1)
It's an IE bug,您参考链接中的那个。
看看jquery-placeholder。还将支持IE6!我不确定它是否可以开箱即用,因为IE10应该支持placeholder
属性,因此请检查jQuery.fn.placeholder.input
是true
(更多信息,请参阅README)。如果是,则插件不会做任何事情,因此您可能需要覆盖其检查行为。
令人惊讶的是,该错误仍然存在。
答案 1 :(得分:1)
仅使用CSS找到了解决方案。 https://bl.ocks.org/d3noob/a22c42db65eb00d4e369
PS:带有输入:valid + .fakePlaceholder {display:none}即被冻结
<input type="text" pattern=".+" required="" />
<span class = "fakePlaceholder">Fake placeholder />
input {
position: relative;
top: 0;
border: 1px solid #999;
z-index: 1;
}
.fakePlaceholder{
color: #7D838A;
position: absolute;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
pointer-events: none;
left: 0;
z-index: 1;
padding-left: 10px;
}
input:valid {
background-color: #FFFFFF;
z-index: 2;
}