问问题
2272 次
1 回答
3
从这个问题看来是有可能的,你只需要添加一个title
属性。在这种情况下,这应该工作:
function dynAddOption(list, elementToBeAdded){
if (list.length > 0) {
for(var index = 0; index < list.length; index ++) {
var opt = new Option(list[index].description, list[index].id);
opt.title = 'Foo'; // < this is the tooltip
elementToBeAdded.options[index + 1] = opt;
}
}
}
于 2013-02-06T10:51:31.027 回答