0

我正在尝试在客户端 Jade 模板中实现搜索栏模板。

table.SearchBar(cellpadding="0", cellspacing="0")
    tr
        td.SearchCell
            div.SearchIndicator(id="SearchIndicator_#{eId}")
            input.SearchText.Initializing(id="SearchText_#{eId}", type="text", placeholder="gathering contacts list...")
        -if(parentName === "Contacts")
            td.SearchCell(style="width: 100px;")
                button.PresenceButton(id="PresenceButton_#{eId}")
                    input.PresenceCheckbox(type="checkbox", name="Presence", id="PresenceCheckbox_#{eId}")
                    p.PresenceLabel online only?

在 Chrome && Firefox 中,一切都很好。在 IE 9 中,只有复选框根本无法呈现,不会出现在 Web 检查器中,并且它的缺失也会导致脚本稍后出现错误。

这是要了我的命。有任何想法吗?

4

1 回答 1

1

呃...您不能将INPUT元素放在Internet Explorer 中的BUTTON元素中。

于 2013-01-24T21:12:10.443 回答