fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <script> var str="Hello world!"; //查找"Hello" var patt=/Hello/g; var result=patt.test(str); document.write("返回值: " + result); //查找 "W3Cschool" patt=/W3Cschool/g; result=patt.test(str); document.write("<br>返回值: " + result); </script> </body> </html>
运行结果