--- title: RegExp.prototype.global slug: Web/JavaScript/Reference/Global_Objects/RegExp/global tags: - JavaScript - Property - Prototype - RegExp translation_of: Web/JavaScript/Reference/Global_Objects/RegExp/global ---
global
属性表明正则表达式是否使用了 "g
" 标志。global
是一个正则表达式实例的只读属性。
global
的值是布尔对象,如果使用了 "g
" 标志,则返回 true
;否则返回 false
。 "g
" 标志意味着正则表达式应该测试字符串中所有可能的匹配。
你无法直接更改此属性。
global
var regex = new RegExp("foo", "g") console.log(regex.global) // true
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition. Implemented in JavaScript 1.2. | Standard | Initial definition. JavaScript 1.5: global is a property of a RegExp instance, not the RegExp object. |
{{SpecName('ES5.1', '#sec-15.10.7.2', 'RegExp.prototype.global')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-get-regexp.prototype.global', 'RegExp.prototype.global')}} | {{Spec2('ES6')}} | global is now a prototype accessor property rather than an instance's own data property. |
{{ CompatibilityTable() }}
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} | {{ CompatVersionUnknown() }} |