搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
JavaScript
JavaScript 教程
JavaScript基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <title>JavaScript 正则表达式忽略大小写gi示例 - 基础教程(div.cn)</title> <body> <p>点击按钮执行一个全局和大小写不敏感的搜索"tion"在一个字符串:</p> <button onclick="myFunc()">Click</button> <p id="output"></p> <script> function myFunc() { var str = "POLLUTION: Air Pollution is introduction of chemicals to the atmosphere"; var patt = /tion/gi; var res = str.match(patt); document.getElementById("output").innerHTML = res; } </script> </body> </html>
运行结果