<div class="textarea-prepend"><textarea rows="6" placeholder="请输入消息内容"></textarea></div>
.textarea-prepend {position: relative;}.textarea-prepend textarea {width: 300px;}.textarea-prepend::before {background-color: #f5f7fa;color: #909399;display: block;position: absolute;content: attr(data-content);top: 1px;left: 1px;border-radius: 4px;padding: 4px;white-space: nowrap;line-height: normal;font-size: 12px;}
const el = document.querySelector('.textarea-prepend');const smsSign = '我的签名abc';let charLength = 0;for (let i = 0; i < smsSign.length; i++) {if (/[a-z0-9]/i.test(smsSign[i]) || ['[', ']'].includes(smsSign[i])) {charLength++;}}const smsSignTotalLength = smsSign.length - charLength + charLength / 2;el.setAttribute('data-content', smsSign);el.querySelector('textarea').style.textIndent = `${smsSignTotalLength + 0.5}em`;