2016-05-12 55 views

回答

5

The general syntax for adding an attribute to an element in Emmet is:

element[attr=value] 

So in this case, it'd be:

a[href=www.google.com] 

That said, if you just do a by itself, it should automatically jump the editor cursor into the href attribute, and you can do a:link to pre-populate it with a http://. So those options might be faster/more to your tastes.

For more information, look at the Emmet Cheat Sheet - 它列出了所有可用的語法。

7

稍短:

a[www.google.com] 

等於:

<a href="www.google.com"></a> 
+0

在找不到相關的部分[的文檔(http://docs.emmet.io/),但它適用於我。 – Pang