이 기사의 예에서는 JavaScript가 페이지의 민감한 단어를 자동으로 차단하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
<html> <head> <title>Bad Words Example</title> <script type="text/javascript"> function filterText(sText) { var reBadWords = /badword|anotherbadword/gi; return sText.replace(reBadWords, "****"); } function showText() { var oInput1 = document.getElementById("txt1"); var oInput2 = document.getElementById("txt2"); oInput2.value = filterText(oInput1.value); } </script> </head> <body> <P> <textarea rows="10" cols="50" id="txt1">badword anotherbadword</textarea><br /> <input type="button" value="Filter Bad Words" onclick="showText()" /></p> <P>Filtered Text:<br /> <textarea rows="10" cols="50" id="txt2"></textarea></p> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.