发布网友 发布时间:2022-04-24 03:38
共1个回答
热心网友 时间:2022-04-24 06:39
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RunJS</title>
<script>
function test() {
var a = document.getElementById("t1").value;
var b = window.open();
b.document.write(a.replace(/[\r\n\f]/g, "<br />"));
b.document.write(a.replace(/(你|好|不好)/g, "要替换的字"));
}
</script>
</head>
<body>
<textarea id="t1"></textarea>
<button onClick="test()">确定</button>
</body>
</html>
追问
谢谢你,不过我试过了,效果还是如图
请问跟网页浏览器有关吗?非常感谢。