1
我用下面的代碼才能把移動造型的輸入形式:jQuery Mobile的形式失去造型
items.push('<form id="flatmetrics"><table >');
for (i = 0; i < len; i += 1) {
row = resultflat.rows.item(i);
if (row.currentmetric == 0) {
items.push('<tr><td width="20%"><label for="' + row.flatno + '">' + row.flatdescription + '</td><td width="20%">' + row.previousmetric +'</label></td><td width="60%"><input type="number" name="' + row.flatno + '" id="' + row.flatno + '" flat="' + row.flatdescription + '" building="' + row.buildingcode + '" class="field" value="' + row.previousmetric + '"/></td></tr>');
}
else {
items.push('<tr><td width="20%"><label for="' + row.flatno + '">' + row.flatdescription + '</td><td width="20%">' + row.previousmetric +'</label></td><td width="60%"><input type="number" name="' + row.flatno + '" id="' + row.flatno + '" flat="' + row.flatdescription + '" building="' + row.buildingcode + '" class="field" value="' + row.currentmetric + '"/></td></tr>');
}
}
items.push('</table></form>');
$('#entriesflatFM').show();
$('#entriesflatFM').html(items.join('\n')).page();
第一次訪問後,形式不具有增強的風格。
有誰知道這是爲什麼?
沒有上述作品對我來說。奇怪的是,如果我選擇返回前一個菜單的另一種選擇也增強了風格消失... – kosbou 2012-02-29 13:02:16