非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
input
非标准属性是正则表达式静态属性,含有正则表达式所匹配的字符串。RegExp.$_
是这个属性的别名。
语法
RegExp.input RegExp.$_
描述
input
属性是静态的,并不是正则表达式独立对象的属性。反之,你应始终将其使用为 RegExp.input
或者 RegExp.$_。
当正则表达式上搜索的字符串发生改变,并且字符串匹配时,input
属性的值会修改。
示例
使用 input
和 $_
var re = /hi/g; re.test('hi there!'); RegExp.input; // "hi there!" re.test('foo'); // 新测试,不匹配 RegExp.$_; // "hi there!" re.test('hi world!'); // 新测试,匹配 RegExp.$_; // "hi world!"
规范
非标准。并不是任何现行规范的一部分。
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains.
Find out how you can help!
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |