扫码一下
查看教程更方便
global 属性用于返回正则表达式是否具有 "g" 。
如果 g 标志被设置,则该属性为 true,否则为 false。
语法如下:
RegExp.global
如果设置了“g”修饰符,则返回“TRUE”,否则返回“FALSE”。
所有主流浏览器都支持 global 属性。
<html>
<head>
<title>JavaScript RegExp global Property</title>
</head>
<body>
<script type = "text/javascript">
var re = new RegExp( "string" );
if ( re.global ) {
document.write("Test1 - Global property is set");
} else {
document.write("Test1 - Global property is not set");
}
re = new RegExp( "string", "g" );
if ( re.global ) {
document.write("<br />Test2 - Global property is set");
} else {
document.write("<br />Test2 - Global property is not set");
}
</script>
</body>
</html>
输出结果:
Test1 - Global property is not set
Test2 - Global property is set