textarea標簽是不支持局部文字改變顏色的,也不支持內部嵌套其他標簽,想要達到以上效果,可以用HTML 5 全局 contenteditable 屬性,contenteditable 屬性規定是否可編輯元素的內容,設置html標簽的contentEditable=‘true’時,即可開啟該元素的編輯模式。
達到仿照textarea的效果。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>textarea</title>
</head>
<body>
<div style="border: 1px solid #CBCBCB;height: 200px;width: 400px" contenteditable="true">
<span contenteditable="false">投入:</span><span style="color: red">500</span>
</div>
</body>
</html>