遨游 innerHTML 表单数据 丢失
我用 innerHTML 生成 表单,然后提交。
在IE下正常。。在遨游下。表单数据提交无效。
脚本代码如下:
var tb=document.getElementById("writeBigSort");
Bightml += '<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#c9c9c9" class="STYLE1"><tr bgcolor="#FFFFFF"><td height="22" bgcolor="#FFFFFF" width="5%"><textarea name="small_sort[]" cols="20" rows="1" onFocus="this.rows=2;" onBlur="this.rows=1;" style="background-color:#7AC2D8" ></textarea></td>';
Bightml += '<td height="22" bgcolor="#FFFFFF" width="5%"><textarea name="bud_project[]" cols="44" rows="1" onFocus="this.rows=2;" onBlur="this.rows=1;"></textarea></td>';
Bightml += '<td bgcolor="#FFFFFF" width="5%"><input type="text" name="bud_price[]" value="" size="10"/></td>';
Bightml += '<td bgcolor="#FFFFFF" width="5%"><input type="text" name="bud_allNum[]" value="0" size="10" /></td>';
Bightml += '<td bgcolor="#FFFFFF" width="5%"><input type="text" name="bud_allMonery[]" value="0" size="10" /></td>';
Bightml += '<td bgcolor="#FFFFFF" width="5%"><input type="text" name="bud_ready[]" value="0" size="10" /></td>';
Bightml += '<td height="22" bgcolor="#FFFFFF" width="5%"><input name="bud_account[]" value="0" size="10" /></td>';
Bightml += '<td height="22" bgcolor="#FFFFFF" width="5%"><input name="bud_settle[]" value="0" size="10" /></td>';
Bightml += '<td height="22" bgcolor="#FFFFFF" width="5%">';
Bightml += '<input name="button2" type="button" value="新增行" class="button" onClick="AddSmallSort();";/></td></tr>';
tb.innerHTML=Bightml;