0
我需要使用多表格excel工作簿中的數據填充表單。我已經嘗試編寫一個VBA腳本來序列化爲Json,但它看起來非常勞動密集,並且查看了一個名爲jquery.populate的插件,但無法找出一個。如何使用excel數據填充jQuery表單
下面是示例:
<fieldset>
<div class="_50"><strong>Phytoplankton CNP Sample ID:</strong><input type="text" name="phyCNP"></div>
<div class="_25">D1 Filtered (mL):<input type="text" name="2D1"></div>
<div class="_25">D2 Filtered (mL):<input type="text" name="2D2"></div>
</fieldset>
<fieldset>
<div class="_50"><strong>Algae Sample ID:</strong><input type="text" name="algae"></div>
<div class="_25"> <label></label>
<input type="radio" id="radPeri1mod" name="algae" data-mini="true"/>
<label for="radPeri1mod">PERI-1-MOD</label>
<label> </label>
<input type="radio" id="radPeri1" name="algae" data-mini="true"/>
<label for="radPeri1">PERI-1</label></div>
<div class="_25"> Other: <input type="text" id="textOther" name="algae" /></div>
</fieldset>
1.什麼是填充從Excel工作簿中多張田最好的方法是什麼?
2.是否有辦法根據excel字段集的數量即時添加字段集?上面的字段集可能有一組數據或5組數據。我只希望在基本形式中有一個空集。