我正在动态制作下拉列表:
var html = '<select id="' + TableName + curRow + 'correlation" name="' + TableName + curRow + 'correlation" selected=' + correlation + '>
<option value=""></option>
<option value="positive">positive</option>
<option value="negative">negative</option></select>
newCell.innerHTML = html;
当变量correlation = positive时,默认仍然选择空白选择。 提前谢谢。