发布网友 发布时间:2022-04-22 10:59
共2个回答
热心网友 时间:2022-05-16 20:43
一楼有错了.当它替换回车时,再点一次会再次替换,即点一次就替换 一次
<html>
<head>
<body>
<Script Language="JavaScript">
function chg()
{
str=document.getElementById("txt").value;
str1=str.replace("\r\n","<br/>");
str2=str1.replace(" "," ");//& nbsp;之间没有空格
document.getElementById("txt").value=str2;
}
</Script>
<textarea id="txt"></textarea>
<input type="button" onclick="chg()"/>
</body>
</html>
热心网友 时间:2022-05-16 22:01
就是这样子了
<html>
<head>
<Script Language="JavaScript">
function chg()
{
str=document.getElementById("txt").value;
str1=str.replace("\n","<br/>");
str2=str1.replace(" ","& nbsp;");//& nbsp;之间没有空格
document.getElementById("txt").value=str2;
}
</Script>
</head>
<body>
<textarea id="txt"></textarea>
<input type="button" onclick="chg()"/>
</body>
</html>