0

在我的页面中,我有一些以这种方式编写的输入按钮:

<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;});

谢谢

4

1 回答 1

1

They are attributes of a DOM object, so you can retrieve them like this:

var button = ...;

var idtag = button['idtag'];
var value = button['value'];
于 2013-02-12T10:20:19.960 回答