이 기사의 예에서는 JavaScript가 대체 함수를 사용하여 문자열을 바꾸는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JavaScript는 교체 기능을 통해 문자열을 교체합니다. 다음 코드는 Visit Microsoft의 Microsoft를 jb51.net으로 교체합니다.
<!DOCTYPE html> <html> <body> <p> Click the button to replace "Microsoft" with "jb51.net" in the paragraph below: </p> <p id="demo">Visit Microsoft!</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var str=document.getElementById("demo").innerHTML; var n=str.replace("Microsoft","jb51.net"); document.getElementById("demo").innerHTML=n; } </script> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.