replace
<!DOCTYPE html>
<html>
<body>
<p>Replace 功能</p>
<button onclick="myFunction()">点击</button>
<p id="demo">"Paul,Paula,Pauline,paul,Paul"</p>
<script>
function myFunction() {
var str = document.getElementById("demo").innerHTML;
var txt = str.replace("Paul","Ringo");
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>

浙公网安备 33010602011771号