通过innerHTML写入页面,textarea行首的换行符丢失

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>)</title>
<script>
var a = "<textarea>&#10;&#10;sdf</textarea>"
function changeLink(){
    document.getElementById('myAnchor').innerHTML=a;
}
</script>
</head>
<body>
 <input type="button" onclick="changeLink()" value="修改">
<div id="myAnchor" ></div>
 
</body>
</html>

运行结果是只会换一行,最初以为是innerHTML的缘故,后来才发现这是在HTML 5规范中指定的,html在渲染textarea控件的标准就是如此。

解决方案:手动在前面加一行换行。

参考链接:https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inbody

A start tag whose tag name is "textarea"
Run these steps:
1. Insert an HTML element for the token.
2. If the next token is a U+000A LINE FEED (LF) character token, then ignore that token and move on to the next one. (Newlines at the start of textarea elements are ignored as an authoring convenience.)
3. Switch the tokenizer to the RCDATA state.
...
 

转载于:https://my.oschina.net/cdt/blog/1800466

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值