0

我有以下html代码

<input type="radio" name="production23" id="account-production-yes23">
<label for="account-production-yes23">Yes</label>

来自html2haml转换器的相应haml语法给了我

%input#account-production-yes23{name: "production23", type: "radio"}/ 
%label{for: "account-production-yes23"} Yes

它有效,但我想知道该行中的/含义

%input#account-production-yes23{name: "production23", type: "radio"}/ 
4

2 回答 2

1

来自Haml.info

正斜杠字符放在标记定义的末尾时,会导致 Haml 将其视为空(或无效)元素。根据格式,标签将呈现为不带结束标签(:html4 或 :html5),或作为自结束标签(:xhtml)。

于 2013-10-31T20:30:49.267 回答
0

正斜杠字符放在标记定义的末尾时,会导致 Haml 将其视为空(或无效)元素。根据格式,标签将呈现为不带结束标签(:html4 或 :html5),或作为自结束标签(:xhtml)。

在这里查看:http: //haml.info/docs/yardoc/file.REFERENCE.html#empty_void_tags_

于 2013-10-31T20:31:34.907 回答