2015-12-02 105 views
0

因此,這裏是我試圖運行代碼:元素來聲明輸入名稱玉

ul each account in accountlist li(class='no-bullets'): form(id='get-account-info'): input(type='hidden', name= account): button(class='btn', action='submit')= account

它工作得很好,直到我嵌套在輸入元素。

然後全身心此錯誤: Error: input is self closing and should not have content.

我是否不允許使用的元素從陣列從陣列環通知元素的屬性,使用元素兩次,或者是有一些語法我當我傾注文檔時,錯過了/錯過了任何堆棧溢出問題以找到解決方法。

回答

1

輸入元素不能在HTML中具有子元素。

試試這個:

ul 
    each account in accountlist 
    li(class='no-bullets'): form(id='get-account-info'): input(type='hidden', name= account) 
    button(class='btn', action='submit')= account 

另外,表單的ID必須是唯一的。