有没有办法选择文本输入值第一个字母并通过样式表中的CSS更改其颜色? 所以,例如,我有
<input type="text" name="address" value="* Property Address :" />
我想只选择value属性(*)的第一个字母,然后用CSS将其更改为红色。这可能与css有关吗?
答案 0 :(得分:3)
修改:我刚注意到有一个bug in Chrome会导致光标与contenteditable
和::first-letter
一起出现在错误的位置。它适用于任何其他情况。
我推出了自己的(主要是CSS)解决方案,以便在前一段时间内使用<div contenteditable="true">
和<input type="hidden">
,我现在与您分享。它模拟文本输入,但是是div。如果div
是类text
,则强制输入在1行(否则它更接近textarea
)。 div附带一个占位符,即data-placeholder
属性。 form-remote-input
属性向JS发出信号,input
填充div的值。为了满足要求,我向::first-letter {color: #F00;}
添加了div
。运行代码段以查看我的错误输入。
function remote_input_updater(element, scope) {
var scope = typeof scope !== 'undefined' ? scope : document;
var remote_id = element.getAttribute('form-remote-input');
var remote_element = scope.querySelector("#" + remote_id);
// Load initial value
element.textContent = remote_element.value;
// Add blur event updater
var update_remote = function(e){
remote_element.value = element.textContent;
if(element.textContent == "") { // Remove extra <br>s that get added
while (element.firstChild) {
element.removeChild(element.firstChild);
}
}
}
element.addEventListener('blur', update_remote);
};
[].forEach.call(document.querySelectorAll('[form-remote-input]'), function(element){remote_input_updater(element)});
&#13;
[contenteditable] {
color: #000;
border: 1px solid black;
padding: 3px;
min-height: 1.2em;
}
[contenteditable]:empty::before{
content: attr(data-placeholder);
color: #666;
}
[contenteditable=true]:empty:focus::before{
content: "\00a0";
}
[contenteditable]:focus {
outline: none;
}
/* Forces single line */
.text[contenteditable] br{
display:none;
}
.text[contenteditable] * {
display: inline;
}
#first-red::first-letter {
color: #F00;
}
&#13;
<body>
<div class="text" id="first-red" data-placeholder="This is essentially an input" contenteditable="true" form-remote-input="remote-id"><!-- Must be no whitespace in here --></div>
<input type="hidden" id="remote-id" />
</body>
&#13;
答案 1 :(得分:2)
我认为输入框不会改变第一个字母的样式 - 似乎操作系统无法实现。因此,您可以div
contentEditable
属性等于"true"
,并使用JavaScript获取其内容,或者使用水平对齐的两个输入或其他内容的小型解决方法。见:
<html>
<head>
.leftInput{
border-bottom: 1px solid black;
border-left: 1px solid black;
border-top: 1px solid black;
border-right: 0px;
width:10px;
color:red;
}
.rightInput{
border-bottom: 1px solid black;
border-right: 1px solid black;
border-top: 1px solid black;
border-left: 0px;
margin-left: 0px;
}
</head>
<body>
<input type="text" name="address" value="* " class="leftInput" /><input type="text" name="address" value="Property Address :" class="rightInput" />
</body>
</html>
.leftInput {
border-bottom: 1px solid black;
border-left: 1px solid black;
border-top: 1px solid black;
border-right: 0px;
width: 10px;
color: red;
}
.rightInput {
border-bottom: 1px solid black;
border-right: 1px solid black;
border-top: 1px solid black;
border-left: 0px;
margin-left: 0px;
}
<input type="text" name="address" value="* " class="leftInput"
/><input type="text" name="address" value="Property Address :" class="rightInput" />
答案 2 :(得分:0)
您无法使用“输入标记”。
您必须使用div标签(cf:How do I make an editable DIV look like a text field?),然后仅为您的第一个字符使用另一个标记(如div),然后在其上应用您的样式。
<html>
<head>
<style>
#input {
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: white;
background-color: -moz-field;
border: 1px solid darkgray;
box-shadow: 1px 1px 1px 0 lightgray inset;
font: -moz-field;
font: -webkit-small-control;
margin-top: 5px;
padding: 2px 3px;
width: 398px;
}
</style>
</head>
<body>
<div id="input" contenteditable><span style="color: red;">*</span>Property Address :</div>
</body>
</html>
DivinusVox的另一个解决方案(仅当第一个字母是字母时才有效):
<html>
<head>
<style type='text/css'>
#input:first-letter {
color: red;
}
#input {
-moz-appearance: textfield;
-webkit-appearance: textfield;
background-color: white;
background-color: -moz-field;
border: 1px solid darkgray;
box-shadow: 1px 1px 1px 0 lightgray inset;
font: -moz-field;
font: -webkit-small-control;
margin-top: 5px;
padding: 2px 3px;
width: 398px;
}
</style>
</head>
<body>
<div id="input" contenteditable>o Property Address :</div>
</body>
</html>
答案 3 :(得分:0)
确定尝试为输入添加填充,将输入包装在相对定位的div中,然后在文本框的填充内添加一个绝对定位的div,其中包含“*”。
使用jQuery或javascript隐藏焦点上的div,如果值为空则在模糊处再次显示
<div style="position: relative">
<input type="text" style="padding-left: 20px;" name="address" value="Property Address :" onfocus="$('#placeholder1').hide();" onblur="if ($(this).val() == '') {$('#placeholder1').show();}" />
<div id="placeholder1" style="position: absolute; top: XXpx; left: XXpx; color: #123456;">*</div>
</div>
填充,顶部和左侧值只是一个例子。你必须找到正确的价值
答案 4 :(得分:0)
你可以通过javascript和jquery这样做
var firstLetter = $("input").val().charAt(0);
var val = $("input").val();
$("input").val(val.substr(1));
var span = "<span style='color:red'>" + firstLetter + "</span>";
$(span).insertBefore("input");