RegExp.input ($_) - JavaScript 编辑
非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
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) |
另见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论