Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 yesod 中,我们可以像这样指定类属性:
<div .myclass> ==> <div class="myclass">
有没有 id 的类比?例如,类似:
<div #id> ==> <div id="id">
是的; 它具有您猜到的确切语法。
来自Yesod 书:
有两个方便的属性:对于 id,您可以使用散列,对于类,可以使用句点。换句话说,<p #paragraphid .class1 .class2>。