发布网友 发布时间:2022-04-22 13:09
共2个回答
热心网友 时间:2023-10-15 00:44
如下正则:
var text = document.getElementById("comment").value;//输入的值
var newText = text.replace(/\s{1,}/g,"");
newText就是你要的东西
热心网友 时间:2023-10-15 00:44
var s = 'sadklfj<br> sdlkjf asdf asldkfj asdf askldfjklasdjf <br >';
alert(s.replace(/(<br>|\s)/g, function() {
if(arguments[0].indexOf('<br') !== -1) {
return '<br>';
}else {
return '';
}
}));
是这个结果吗