我在使用占位符时遇到问题。我想问一下,是否有可能在输入字段中设置值的样式,但是以不同的方式设置该值的单词。
例如,如果我们的输入字段具有"First Name"
我想要的初始值green color
for"First"
和red color
for "Name"
(这只是一个示例)。
这甚至可能吗?
注意:我使用值作为“占位符”(而不是占位符 html 属性),因为 ie。
<input type="text" value="First Name" onFocus="if (this.value == 'First Name') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'First Name';}" />