设置下拉列表选择的值在javascript中不起作用

时间:2014-10-23 18:37:44

标签: javascript jquery

我正在动态制作下拉列表:

       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时,默认仍然选择空白选择。 提前谢谢。

0 个答案:

没有答案