动态创建select下拉列表
//html页面
<select name="OpeationStep" id="OpeationStep">
<option value="no" >请选择节点</option>
</select>
//js代码
var oss = document.getElementById('OpeationStep');
oss.options.length=0;
for(var i=0;i<6;i++){
var varItem = new Option(i, i);//option中的第一个值为显示的值,第二个值为value
oss.options.add(varItem);
}
//当然如果你不想在html页面中写入
<select name="OpeationStep" id="OpeationStep">
<option value="no" >请选择节点</option>
</select>
这段代码你可以在页面加载的时候这样写
var newselect = document.createElement("<select class='select154' name='OpeationStep' id='OpeationStep'></select>");
document.body.insertBefore(newselect );