在我的页面中,我有一些以这种方式编写的输入按钮:
<input type="button" value="" idtag="" style="color:rgb(51, 156, 203); background-color:white; border:0px; padding:0px;">
我可以使用正则表达式来获取 value 和 idtag 的值吗?并在方法替换之后,替换字符串上的结果?
text = text.replace(/(<input type="button" value="(.+)" idtag="(.+)" style="color:rgb(51, 156, 203); background-color:white; border:0px; padding:0px;"> )/gi, function($0,$1,$2){return $3+"-"+$4;});
谢谢