我可以生成60个html链接,如:
a.onegame*60
如何为所有这些设置默认的innerHTML和属性值而不是空值?
答案 0 :(得分:1)
如果你需要的只是一个占位符,只需使用花括号为你的所有链接添加一些默认文本。例如,a.onegame{test}*3
将为您提供
<a href="" class="onegame">test</a>
<a href="" class="onegame">test</a>
<a href="" class="onegame">test</a>
如果您需要为项目编号,请使用Emmet的$
功能,例如a.onegame{test$}*3
输出
<a href="" class="onegame">test1</a>
<a href="" class="onegame">test2</a>
<a href="" class="onegame">test3</a>
答案 1 :(得分:0)
我发现我们可以使用此变量$
添加任何计数器值,并使用{value}
在emmet中提供值或占位符。
例如a.onegame{link $}
给出:
<a href="" class="onegame">link 1</a>
$
从1开头
要添加 href 值或任何属性,语法为[attr = value]
,如:
a.onegame[href=$]
给出:
<a href="1" class="onegame"></a>