DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> textarea中的手動換行處理的jquery代碼
textarea中的手動換行處理的jquery代碼
編輯:JQuery特效代碼     
網上眾說紛纭,經過測試用 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>

結果:

下面的處理就不說了哈

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved