JavaScript source 属性 source 属性用于返回模式匹配所用的文本。 语法 RegExpObject.source 浏览器支持 所有主要浏览器都支持 source 属性。 在线实例 实例 返回与正则模式匹配的文本: var str="Visit NOWCODER"; var patt1=/NOW/g; document.write("The text of the RegExp is: "+patt1.source); 尝试一下