0
在主頁面中,我點擊下面的複選框將值存儲在陣列列表'方法'中。 保存之後,當我嘗試編輯主頁面時,當時如何顯示相應的複選框'checked'。存儲的複選框值在嘗試編輯時未被選中
<input type="checkbox" name="Method" value="icon" /> <g:message code="icon.label"/>
<input type="checkbox" name="Method" value="touch-icon" /> <g:message code="touch.label"/>
我直接發送值,其中value =「$ {publicRuleInstance?.status}」正在發生。我想從數組列表中取出數值並與各個複選框進行比較來檢查它們。 – John
你如何儲存和獲取信息?你需要首先獲取值,然後使任何複選框都需要它的'checked = checked'屬性 – ntgCleaner