a = document.getElementById("textarea")var b = window.open();b.document.write(a.value.replace(/\n/g,"<br>"));b.document.write(a.value.replace(/[1,2]/g,"不好"));这样写为什么不能全部换行,请大神帮助!!!请问怎么写两个<br>,我是菜鸟,不懂,请说的详细点,谢谢谢谢!!!
2 回答
慕的地6264312
TA贡献1817条经验 获得超6个赞
var s = a.value.replace(/\n/g, "" ); b.document.write(s.replace(/[1,2]/g, "不好" )); |
或者两个合一个写:
b.document.write(a.value.replace(/\n/g, "" ).replace(/[1,2]/g, "不好" )); |
添加回答
举报
0/150
提交
取消