这是我的小提琴:http: //jsfiddle.net/tE6Wv/7/
我需要selected="selected"
在使用 moo 更改时从先前选择的选项属性中添加或删除该选项,但从未添加过 html。
我正在使用 moo 缓慢创建菜单,但未采用所选值
var firstoption = new Element('option', {
'selected':'selected',
'value':"myValue"
}
或者
var firstoption = new Element('option', {
'selected': true,
'value': "myValue"
}
这些都不起作用
感谢任何帮助。谢谢!