我有一個這樣的對象:如何映射對象以形成字段?
var settings = {
Name: "Fairy Tail",
Feature:
{
Translate: true,
Share: true
}
}
和一個表單
<form>
<input type="text" name="Name" />
<input type="checkbox" name="Feature.Translate" />
<input type="checkbox" name="Feature.Share" />
</form>
我怎樣才能使對象填寫「自動」的形式(無手工設置每個字段的值)?
什麼是你的後端,這在c#atleast中稱爲反射,我從來沒有在UI或jQuery級別完成 – kobe
它必須在JavaScript上。我在一個插件上使用它。 – BrunoLM
什麼(如果有的話)框架可用(jQuery,Dojo等)? – jdc0589