我有一个填充值的文本字段。它包含'XXXX',我想只突出显示'XXXX',以便用户可以注意到XXXX必须替换为值。如何获取该值,仅使用“XXXX”并将其替换为相同的值,但已着色。
答案 0 :(得分:0)
您可以使用Div元素:
<html>
<title>This is test</title>
<head>
<style>
.highlight {
background-color: yellow;
}
div {
-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 class="txt" contenteditable="true"> I am XXXX.</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$txt = $(".txt").text();
$newTxt = $txt.replace(/XXXX/gi,"<span class=highlight>XXXX</span>");
$(".txt").html($newTxt);
})
</script>
</body>
</html>