網上眾說紛纭,經過測試用 textarea的內容.replace(/\n/g, "<br/>") 解決問題,在IE6/7/8/9 Firefox/3.6.13 chrome10.0.648.82下測試通過,示例代碼如下:
代碼如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>YES!B/S!文章示例頁面</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
function testabc()
{
var content=$("#test").val().replace(/\n/g,"<br/>");
alert(content);
}
</script>
</head>
<body>
<textarea id="test" rows="4" style="width: 406px; overflow-y: auto;"></textarea><br>
<input type="button" onclick="testabc()" value="測試"/>
</body>
</html>
結果:
下面的處理就不說了哈