do something with mypara1
...
do something with mypara2
...
{{#dpl:
|category=foo
|notcategory=bar
}}
如果我使用document.getElementById(' testid'),它只会得到持续的值。但我想得到每个值。
答案 0 :(得分:1)
这是因为id值是唯一的,
将id更改为class,document.getElementByClassName('testid')
将返回一个数组